From b2ecc790a06108339f6e015f1b8c1433a0cd2921 Mon Sep 17 00:00:00 2001 From: bowser0000 Date: Sat, 8 Aug 2020 15:46:37 -0400 Subject: Add toggle for 20% chance slayer drops counting method The new method counts the number of times an item has dropped, instead of counting the amount of items that has dropped. This is 100% consistent, unlike the item detecting method. --- me/Danker/commands/ResetLootCommand.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'me/Danker/commands/ResetLootCommand.java') diff --git a/me/Danker/commands/ResetLootCommand.java b/me/Danker/commands/ResetLootCommand.java index 01e8b11..1afc204 100644 --- a/me/Danker/commands/ResetLootCommand.java +++ b/me/Danker/commands/ResetLootCommand.java @@ -94,6 +94,7 @@ public class ResetLootCommand extends CommandBase { lc.zombieRevsSession = 0; lc.zombieRevFleshSession = 0; lc.zombieFoulFleshSession = 0; + lc.zombieFoulFleshDropsSession = 0; lc.zombiePestilencesSession = 0; lc.zombieUndeadCatasSession = 0; lc.zombieBooksSession = 0; @@ -114,6 +115,7 @@ public class ResetLootCommand extends CommandBase { lc.spiderTarantulasSession = 0; lc.spiderWebsSession = 0; lc.spiderTAPSession = 0; + lc.spiderTAPDropsSession = 0; lc.spiderBitesSession = 0; lc.spiderCatalystsSession = 0; lc.spiderBooksSession = 0; @@ -132,6 +134,7 @@ public class ResetLootCommand extends CommandBase { lc.wolfSvensSession = 0; lc.wolfTeethSession = 0; lc.wolfWheelsSession = 0; + lc.wolfWheelsDropsSession = 0; lc.wolfSpiritsSession = 0; lc.wolfBooksSession = 0; lc.wolfEggsSession = 0; -- cgit