9
0
mirror of https://github.com/Auxilor/EcoArmor.git synced 2026-01-06 15:42:07 +00:00

Removed EcoArmorConfig.SETS reference

This commit is contained in:
Auxilor
2021-02-18 14:49:21 +00:00
parent b9cb1edd65
commit 05e291c539

View File

@@ -82,7 +82,7 @@ public class ArmorDisplay extends DisplayModule {
meta.setDisplayName(slotMeta.getDisplayName());
if (meta instanceof SkullMeta && slotMeta instanceof SkullMeta) {
String base64 = EcoArmorConfigs.SETS.getString(set.getName() + "." + slot.name().toLowerCase() + ".skull-texture");
String base64 = set.getConfig().getString(slot.name().toLowerCase() + ".skull-texture");
SkullUtils.setSkullTexture((SkullMeta) meta, base64);
}