added heat notification too

This commit is contained in:
Vanillj
2022-06-20 18:23:05 +02:00
parent 14066e0b9a
commit 89e86656e0
2 changed files with 33 additions and 11 deletions

View File

@@ -14,7 +14,18 @@ public interface EasyGiantsFoundryConfig extends Config {
description = "Configures whether to notify you when you are about to finish a stage.",
position = 0
)
default boolean showGiantsFoundryNotifications()
default boolean showGiantsFoundryStageNotifications()
{
return true;
}
@ConfigItem(
keyName = "giantsFoundryHeatNotification",
name = "Enable heat notifications",
description = "Configures whether to notify you when you are about to run out of heat.",
position = 1
)
default boolean showGiantsFoundryHeatNotifications()
{
return true;
}