mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Remove usage of IModUtilities from hdskins.
This commit is contained in:
parent
5791a021ef
commit
2ed76dbecc
1 changed files with 4 additions and 3 deletions
|
@ -1,12 +1,13 @@
|
||||||
package com.minelittlepony.client.gui.hdskins;
|
package com.minelittlepony.client.gui.hdskins;
|
||||||
|
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
|
||||||
public final class IndirectHDSkins {
|
public final class IndirectHDSkins {
|
||||||
public static void initialize() {
|
public static void initialize() {
|
||||||
try {
|
try {
|
||||||
Class<?> mlphd = Class.forName("com.minelittlepony.client.hdskins.MineLPHDSkins");
|
Class.forName("com.minelittlepony.client.hdskins.MineLPHDSkins").getConstructor().newInstance();
|
||||||
mlphd.getConstructor().newInstance();
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
LogManager.getLogger().warn("Failed to initialize hooks for hdskins", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue