Changed notification booleans, disabled by default and trigger logic

This commit is contained in:
Vanillj
2022-06-23 01:33:18 +02:00
parent 89e86656e0
commit 919ae6feb7
2 changed files with 24 additions and 35 deletions

View File

@@ -16,7 +16,7 @@ public interface EasyGiantsFoundryConfig extends Config {
)
default boolean showGiantsFoundryStageNotifications()
{
return true;
return false;
}
@ConfigItem(
@@ -27,7 +27,7 @@ public interface EasyGiantsFoundryConfig extends Config {
)
default boolean showGiantsFoundryHeatNotifications()
{
return true;
return false;
}
}