Added basic support for Mo' Creatures (and other entity mods) - specify

mob info in entities.yml
This commit is contained in:
GJ
2013-02-05 22:40:19 -05:00
parent 94a9230525
commit bb88812668
9 changed files with 286 additions and 1 deletions

View File

@ -78,6 +78,7 @@ public class Config extends ConfigLoader {
public boolean getToolModsEnabled() { return config.getBoolean("Mods.Tool_Mods_Enabled", false); }
public boolean getArmorModsEnabled() { return config.getBoolean("Mods.Tool_Mods_Enabled", false); }
public boolean getBlockModsEnabled() { return config.getBoolean("Mods.Block_Mods_Enabled", false); }
public boolean getEntityModsEnabled() { return config.getBoolean("Mods.Entity_Mods_Enabled", false); }
/* PARTY SETTINGS */
public int getAutoPartyKickInterval() { return config.getInt("Party.AutoKick_Interval", 12); }