Change default value of notifications to on

This commit is contained in:
Patrick
2022-06-23 19:25:32 +04:00
parent c89f1fe181
commit 8bb93d80cf

View File

@@ -24,7 +24,7 @@ public interface EasyGiantsFoundryConfig extends Config {
section = notificationList
)
default boolean showGiantsFoundryStageNotifications() {
return false;
return true;
}
@ConfigItem(
@@ -35,7 +35,7 @@ public interface EasyGiantsFoundryConfig extends Config {
section = notificationList
)
default boolean showGiantsFoundryHeatNotifications() {
return false;
return true;
}