Fix patch mistake in IForgeWorldType: CUSTOMIZED -> BUFFET

This commit is contained in:
tterrag 2018-12-29 12:01:41 -05:00
parent dc12cda505
commit 7f5a57f4af

View file

@ -45,7 +45,7 @@ public interface IForgeWorldType
{
if (this == WorldType.FLAT)
mc.displayGuiScreen(new GuiCreateFlatWorld(gui, gui.chunkProviderSettingsJson));
else if (this == WorldType.CUSTOMIZED)
else if (this == WorldType.BUFFET)
mc.displayGuiScreen(new GuiCreateBuffetWorld(gui, gui.chunkProviderSettingsJson));
}