Skip to content

Commit

Permalink
Fix Voracious Pan Config Option #521
Browse files Browse the repository at this point in the history
  • Loading branch information
RavenWolfTiger authored Dec 16, 2024
1 parent adddce4 commit df0c447
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ public static void addUniqueKill(ItemStack pan, ResourceLocation mob) {
public static boolean addKillIfNotPresent(ItemStack pan, ResourceLocation mob) {
List<ResourceLocation> kills = getUniqueKills(pan);

if (kills.size() < 100 && !kills.contains(mob)) {
if (kills.size() < uniqueGainLimit.getValue() && !kills.contains(mob)) {
addUniqueKill(pan, mob);
return true;
}
Expand Down

0 comments on commit df0c447

Please sign in to comment.