loot tracker: fix HERBIBOAR_EVENT name typo

This commit is contained in:
Adam
2019-07-26 21:03:50 -04:00
committed by Adam
parent 2b7c48e0c8
commit 965682df6f

View File

@@ -105,7 +105,7 @@ public class LootTrackerPlugin extends Plugin
// Herbiboar loot handling // Herbiboar loot handling
private static final String HERBIBOAR_LOOTED_MESSAGE = "You harvest herbs from the herbiboar, whereupon it escapes."; private static final String HERBIBOAR_LOOTED_MESSAGE = "You harvest herbs from the herbiboar, whereupon it escapes.";
private static final String HERBIBOR_EVENT = "Herbiboar"; private static final String HERBIBOAR_EVENT = "Herbiboar";
// Hespori loot handling // Hespori loot handling
private static final String HESPORI_LOOTED_MESSAGE = "You have successfully cleared this patch for new crops."; private static final String HESPORI_LOOTED_MESSAGE = "You have successfully cleared this patch for new crops.";
@@ -442,7 +442,7 @@ public class LootTrackerPlugin extends Plugin
if (message.equals(HERBIBOAR_LOOTED_MESSAGE)) if (message.equals(HERBIBOAR_LOOTED_MESSAGE))
{ {
eventType = HERBIBOR_EVENT; eventType = HERBIBOAR_EVENT;
takeInventorySnapshot(); takeInventorySnapshot();
return; return;
@@ -486,7 +486,7 @@ public class LootTrackerPlugin extends Plugin
@Subscribe @Subscribe
public void onItemContainerChanged(ItemContainerChanged event) public void onItemContainerChanged(ItemContainerChanged event)
{ {
if (eventType != null && (CHEST_EVENT_TYPES.containsValue(eventType) || HERBIBOR_EVENT.equals(eventType) || HESPORI_EVENT.equals(eventType))) if (eventType != null && (CHEST_EVENT_TYPES.containsValue(eventType) || HERBIBOAR_EVENT.equals(eventType) || HESPORI_EVENT.equals(eventType)))
{ {
if (event.getItemContainer() != client.getItemContainer(InventoryID.INVENTORY)) if (event.getItemContainer() != client.getItemContainer(InventoryID.INVENTORY))
{ {