Skip to content

Commit

Permalink
Move New Multiblocks & Blocks Back Into Beta
Browse files Browse the repository at this point in the history
To be implemented fully in Nomi 1.8.
  • Loading branch information
IntegerLimit committed Jun 17, 2024
1 parent eb199a7 commit 1b539c9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/main/java/com/nomiceu/nomilabs/config/LabsConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,12 @@ public static class GTCustomContent {

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

@Config.Comment({
"Enable Old Multiblocks.",
Expand All @@ -122,11 +123,12 @@ 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.",
"[default: true]"
"In Beta.",
"[default: false]"
})
@Config.LangKey("config.nomilabs.content.gt_content.new_multiblocks")
@Config.RequiresMcRestart
public boolean enableNewMultiblocks = true;
public boolean enableNewMultiblocks = false;
}
}

Expand Down

0 comments on commit 1b539c9

Please sign in to comment.