Fix default missing model zoom text not being set to false on all places.

This commit is contained in:
RainWarrior 2017-01-21 21:11:35 +03:00
parent 9888214524
commit 7598d18a50

View file

@ -291,7 +291,7 @@ public class ForgeModContainer extends DummyModContainer implements WorldAccessC
replaceVanillaBucketModel = prop.getBoolean(Boolean.FALSE);
propOrder.add(prop.getName());
prop = config.get(Configuration.CATEGORY_CLIENT, "zoomInMissingModelTextInGui", Boolean.TRUE,
prop = config.get(Configuration.CATEGORY_CLIENT, "zoomInMissingModelTextInGui", Boolean.FALSE,
"Toggle off to make missing model text in the gui fit inside the slot.");
zoomInMissingModelTextInGui = prop.getBoolean(Boolean.FALSE);
prop.setLanguageKey("forge.configgui.zoomInMissingModelTextInGui");