Merge branch 'sowrd' into 'master'

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

See merge request 2009scape/2009scape!333
This commit is contained in:
Ceikry 2021-11-20 20:43:19 +00:00
commit a9a2adb531
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)