itemchargeconfig: fix basketcharge config

This commit is contained in:
Crystalknoct
2019-10-19 23:49:31 -06:00
committed by GitHub
parent 46fe675ff6
commit 135a0a1318

View File

@@ -472,6 +472,17 @@ public interface ItemChargeConfig extends Config
return true;
}
@ConfigItem(
keyName = "showBasketCharges",
name = "Show Basket Quantity",
description = "Configures if the number of fruit in a basket is shown",
position = 26
)
default boolean showBasketCharges()
{
return true;
}
@ConfigItem(
keyName = "showInfoboxes",
name = "Show Infoboxes",
@@ -482,4 +493,4 @@ public interface ItemChargeConfig extends Config
{
return false;
}
}
}