diff options
author | bowser0000 <bowser0000@gmail.com> | 2020-08-08 15:46:37 -0400 |
---|---|---|
committer | bowser0000 <bowser0000@gmail.com> | 2020-08-08 15:46:37 -0400 |
commit | b2ecc790a06108339f6e015f1b8c1433a0cd2921 (patch) | |
tree | 70d9e48550c796c86ef582704c1fb35deedcdbe9 /me/Danker/commands/ResetLootCommand.java | |
parent | 52ee33115e9ca743ffcd778b694a60499a06ea03 (diff) | |
download | SkyblockMod-b2ecc790a06108339f6e015f1b8c1433a0cd2921.tar.gz SkyblockMod-b2ecc790a06108339f6e015f1b8c1433a0cd2921.tar.bz2 SkyblockMod-b2ecc790a06108339f6e015f1b8c1433a0cd2921.zip |
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.
Diffstat (limited to 'me/Danker/commands/ResetLootCommand.java')
-rw-r--r-- | me/Danker/commands/ResetLootCommand.java | 3 |
1 files changed, 3 insertions, 0 deletions
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; |