Skip to content

Commit

Permalink
cleanroom -> botania glass (#1993)
Browse files Browse the repository at this point in the history
* added support for botania glass in clean room. No more than 50% in structure.
* bs
  • Loading branch information
Quetz4l authored May 15, 2023
1 parent 274cfd1 commit dcd9a01
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//version: 1683705740
//version: 1684139283
/*
DO NOT CHANGE THIS FILE!
Also, you may replace this file at any time if there is an update available.
Expand Down Expand Up @@ -69,7 +69,7 @@ plugins {
id 'com.diffplug.spotless' version '6.13.0' apply false // 6.13.0 is the last jvm8 supporting version
id 'com.modrinth.minotaur' version '2.+' apply false
id 'com.matthewprenger.cursegradle' version '1.4.0' apply false
id 'com.gtnewhorizons.retrofuturagradle' version '1.3.11'
id 'com.gtnewhorizons.retrofuturagradle' version '1.3.14'
}

print("You might want to check out './gradlew :faq' if your build fails.\n")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,12 @@ private static class ConfigEntry {
private static final String category = "cleanroom_allowed_blocks";

private static void setDefaultConfigValues(Configuration cfg) {
cfg.get("cleanroom_allowed_blocks.manaGlass", "Name", "tile.manaGlass");
cfg.get("cleanroom_allowed_blocks.manaGlass", "Percentage", 50);
cfg.get("cleanroom_allowed_blocks.elfGlass", "Name", "tile.elfGlass");
cfg.get("cleanroom_allowed_blocks.elfGlass", "Percentage", 50);
cfg.get("cleanroom_allowed_blocks.hourglass", "Name", "tile.hourglass");
cfg.get("cleanroom_allowed_blocks.hourglass", "Percentage", 50);
cfg.get("cleanroom_allowed_blocks.reinforced_glass", "Name", "blockAlloyGlass");
cfg.get("cleanroom_allowed_blocks.reinforced_glass", "Percentage", 5);
cfg.get("cleanroom_allowed_blocks.bw_reinforced_glass_0", "Name", "BW_GlasBlocks");
Expand Down

0 comments on commit dcd9a01

Please sign in to comment.