loot tracker: add Kingdom of Miscellania

This commit is contained in:
Daniel Bolink
2019-08-07 17:11:12 -07:00
committed by Adam
parent e41e4d32ca
commit 345f07d20f
2 changed files with 8 additions and 0 deletions

View File

@@ -53,6 +53,10 @@ public enum InventoryID
* Monkey madness puzzle box inventory. * Monkey madness puzzle box inventory.
*/ */
MONKEY_MADNESS_PUZZLE_BOX(221), MONKEY_MADNESS_PUZZLE_BOX(221),
/**
* Kingdom Of Miscellania reward inventory.
*/
KINGDOM_OF_MISCELLANIA(390),
/** /**
* Chambers of Xeric chest inventory. * Chambers of Xeric chest inventory.
*/ */

View File

@@ -391,6 +391,10 @@ public class LootTrackerPlugin extends Plugin
// Clue Scrolls use same InventoryID as Barrows // Clue Scrolls use same InventoryID as Barrows
container = client.getItemContainer(InventoryID.BARROWS_REWARD); container = client.getItemContainer(InventoryID.BARROWS_REWARD);
break; break;
case (WidgetID.KINGDOM_GROUP_ID):
eventType = "Kingdom of Miscellania";
container = client.getItemContainer(InventoryID.KINGDOM_OF_MISCELLANIA);
break;
default: default:
return; return;
} }