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

@@ -17,6 +17,6 @@ public interface GuiElement {
void tick(Minecraft mc);
void setEnabled(boolean enabled);
void setElementEnabled(boolean enabled);
}