Properly track leaf-bladed sword drops in ::stats command

This commit is contained in:
vk 2021-11-20 20:43:18 +00:00 committed by Ceikry
parent 4628775c50
commit 8ab45dd848
2 changed files with 3 additions and 2 deletions

View file

@ -53,4 +53,5 @@
- Fairy rings emit a sound when teleporting.
- Void set effects now work more uniformly.
- Summoning familiars now grant combat xp when attacking
- Canoe travel interface now animates correctly
- Canoe travel interface now animates correctly
- Properly track leaf-bladed sword drops in ::stats command

View file

@ -74,7 +74,7 @@ fun sendStats(player: Player, other: Player, page: Int){
when(i) {
97 -> sendLine(player, "Turoths: ${GlobalKillCounter.getKills(other, TUROTH_IDS)}", i)
68 -> sendLine(player, "Kurasks: ${GlobalKillCounter.getKills(other, KURASK_IDS)}", i)
69 -> sendLine(player, "Leaf-bladed swords: ${GlobalKillCounter.getRareDrops(other, Items.LEAF_BLADED_SPEAR_4158)}", i)
69 -> sendLine(player, "Leaf-bladed swords: ${GlobalKillCounter.getRareDrops(other, Items.LEAF_BLADED_SWORD_13290)}", i)
70 -> sendLine(player,SPACER,i)
71 -> sendLine(player, "Gargoyles: ${GlobalKillCounter.getKills(other, GARGOYLE_IDS)}", i)
72 -> sendLine(player, "Granite mauls: ${GlobalKillCounter.getRareDrops(other, Items.GRANITE_MAUL_4153)}", i)