Update LootTrackerConfig.java

This commit is contained in:
Kyleeld
2019-05-08 09:51:39 +01:00
committed by GitHub
parent 55edaebf6b
commit 176c37726d

View File

@@ -59,6 +59,16 @@ public interface LootTrackerConfig extends Config
return true;
}
@ConfigItem(
keyName = "chestLootChat",
name = "Show chest loot value in chat",
description = "Show the value of items from CoX/ToB/Barrows chests in chat"
)
default boolean chestLootChat()
{
return true;
}
@ConfigItem(
keyName = "syncPanel",
name = "Synchronize panel contents",
@@ -70,4 +80,4 @@ public interface LootTrackerConfig extends Config
{
return true;
}
}
}