Renamed setEnabled() method in GuiElementInterface to setElementEnabled() to workaround this Forge Bug: http://www.minecraftforge.net/forum/index.php/topic,32063

This commit is contained in:
CrushedPixel
2015-07-14 00:25:17 +02:00
parent a58e06703c
commit 9cf3f426aa
15 changed files with 26 additions and 28 deletions

View File

@@ -58,7 +58,7 @@ public abstract class DelegatingElement implements GuiElement {
}
@Override
public void setEnabled(boolean enabled) {
public void setElementEnabled(boolean enabled) {
this.enabled = enabled;
}
}