Skip to content

Commit

Permalink
Move New Multiblocks & Blocks out of Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegerLimit committed Apr 22, 2024
1 parent 08e2c72 commit 936e64a
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/main/java/com/nomiceu/nomilabs/config/LabsConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,11 @@ public static class GTCustomContent {

@Config.Comment({
"Enable Custom GT Blocks.",
"In Beta.",
"[default: false]"
"[default: true]"
})
@Config.LangKey("config.nomilabs.content.gt_content.blocks")
@Config.RequiresMcRestart
public boolean enableBlocks = false;
public boolean enableBlocks = true;

@Config.Comment({
"Enable Old Multiblocks.",
Expand All @@ -123,12 +122,11 @@ public static class GTCustomContent {
"Enable New Multiblocks.",
"These are new to this Core Mod, as in they do not exist in pre-core-mod versions of Nomi-CEu.",
"Will not work properly if Custom GT Blocks is turned off.",
"In Beta.",
"[default: false]"
"[default: true]"
})
@Config.LangKey("config.nomilabs.content.gt_content.new_multiblocks")
@Config.RequiresMcRestart
public boolean enableNewMultiblocks = false;
public boolean enableNewMultiblocks = true;
}
}

Expand Down Expand Up @@ -370,7 +368,7 @@ public static class Advanced {
@Config.Name("tier settings")
public final TierSettings tierSettings = new TierSettings();

@Config.Comment({ "Control Menu Tooltip Settings, which are used to help with default keybind overrides..",
@Config.Comment({ "Control Menu Tooltip Settings, which are used to help with default keybind overrides.",
"The actual override setting occurs in GroovyScript!" })
@Config.LangKey("config.nomilabs.advanced.controls_tooltips")
@Config.Name("control menu tooltip settings")
Expand Down

0 comments on commit 936e64a

Please sign in to comment.