Skip to content

Commit

Permalink
fix dungeon search radius in config
Browse files Browse the repository at this point in the history
  • Loading branch information
Lothrazar committed Mar 28, 2016
1 parent d778d08 commit dfc63f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/lothrazar/samsprojectiles/ModProj.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private void loadConfig(){
blaze_recipe = config.getInt("blaze.recipe", MODID, 3, 0, 64, "");


dungeon_recipe = config.getInt("dungeon.radius", MODID, 64, 8, 128, "Search distance");
ModProj.DUNGEONRADIUS = config.getInt("dungeon.radius", MODID, 64, 8, 128, "Search distance");

EntityShearingBolt.doesKnockback = config.getBoolean("wool.does_knockback", MODID, true, "Does appear to damage sheep on contact");
EntityShearingBolt.doesShearChild = config.getBoolean("wool.does_child", MODID, true, "Does shear child sheep as well.");
Expand Down

0 comments on commit dfc63f7

Please sign in to comment.