mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14: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;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
|
||||
public final class IndirectHDSkins {
|
||||
public static void initialize() {
|
||||
try {
|
||||
Class<?> mlphd = Class.forName("com.minelittlepony.client.hdskins.MineLPHDSkins");
|
||||
mlphd.getConstructor().newInstance();
|
||||
Class.forName("com.minelittlepony.client.hdskins.MineLPHDSkins").getConstructor().newInstance();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
LogManager.getLogger().warn("Failed to initialize hooks for hdskins", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue