aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuetz4l <Zereff06@gmail.com>2023-05-15 21:21:45 +0300
committerGitHub <noreply@github.com>2023-05-15 20:21:45 +0200
commitdcd9a0180e16dac1e04547c1a82f31679baab2dd (patch)
tree5437691eacc9eb85c448870d38cdcca1e0e941e9
parent274cfd1ae8edbfa04457aab42670876a002a93d1 (diff)
downloadGT5-Unofficial-dcd9a0180e16dac1e04547c1a82f31679baab2dd.tar.gz
GT5-Unofficial-dcd9a0180e16dac1e04547c1a82f31679baab2dd.tar.bz2
GT5-Unofficial-dcd9a0180e16dac1e04547c1a82f31679baab2dd.zip
cleanroom -> botania glass (#1993)
* added support for botania glass in clean room. No more than 50% in structure. * bs
-rw-r--r--build.gradle4
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Cleanroom.java6
2 files changed, 8 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 3fa171e0dd..8bbb6e9280 100644
--- a/build.gradle
+++ b/build.gradle
@@ -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.
@@ -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")
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Cleanroom.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Cleanroom.java
index 6d4d95f2ed..5b2f2801b2 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Cleanroom.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_Cleanroom.java
@@ -403,6 +403,12 @@ public class GT_MetaTileEntity_Cleanroom extends GT_MetaTileEntity_TooltipMultiB
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");