Fixed For emissive texture loading

This commit is contained in:
Frank 2022-10-25 23:57:27 +02:00
parent bfebba6791
commit 9fcec2b033
3 changed files with 145 additions and 85 deletions

View file

@ -60,8 +60,8 @@ public final class Logger {
LOGGER.error(modPref + message, o1, o2, ex);
}
public void error(String message, Object o1, Object o2) {
LOGGER.error(modPref + message, o1, o2);
public void error(String message, Object... params) {
LOGGER.error(modPref + message, params);
}
public void error(String message, Exception ex) {