[trunk] cleanup, prevent lightning fire spread

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1280 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo 2011-04-26 21:36:51 +00:00
parent 530fc32515
commit 63f2eb157a
5 changed files with 9 additions and 56 deletions

View file

@ -327,7 +327,8 @@ public class Settings implements IConf
for (CreatureType ct : CreatureType.values()) {
String name = ct.toString().toLowerCase();
epSettings.put("protect.prevent.spawn."+name, config.getBoolean("protect.prevent.spawn."+name, false));
}
}
epSettings.put("protect.prevent.lightning-fire-spread", config.getBoolean("protect.prevent.lightning-fire-spread", false));
return epSettings;
}