Skip to content

Commit

Permalink
Fixed maxmobs typo instead of maxmob
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Mar 17, 2023
1 parent d2801dc commit 95474d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ private BiomeRecipe getBiomeRecipe(ConfigurationSection biomeRecipeConfig, Strin
b.setLavacoverage(biomeRecipeConfig.getInt("lavacoverage",-1));
b.setIcecoverage(biomeRecipeConfig.getInt("icecoverage",-1));
b.setMobLimit(biomeRecipeConfig.getInt("moblimit", 9));
b.setMaxMob(biomeRecipeConfig.getInt("maxmob", -1));
b.setMaxMob(biomeRecipeConfig.getInt("maxmobs", -1));
return b;
}

Expand Down

0 comments on commit 95474d6

Please sign in to comment.