Skip to content

Commit

Permalink
fix bad initialization of slimeislanddimblacklist config
Browse files Browse the repository at this point in the history
  • Loading branch information
progwml6 committed Sep 9, 2013
1 parent 7e7266d commit 5b22f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tconstruct/util/PHConstruct.java
Expand Up @@ -356,7 +356,7 @@ public static void initProps (File location)
conTexMode.comment = "0 = disabled, 1 = enabled, 2 = enabled + ignore stained glass meta";
connectedTexturesMode = conTexMode.getInt(2);
//dimension blacklist
cfgDimBlackList = config.get("DimBlackList", "SlimeIslandDimBlacklist", "").getIntList();
cfgDimBlackList = config.get("DimBlackList", "SlimeIslandDimBlacklist",new int[]{}).getIntList();
/* Save the configuration file */
config.save();

Expand Down

0 comments on commit 5b22f45

Please sign in to comment.