aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items/ItemComb.java
diff options
context:
space:
mode:
authorimpbk2002 <impbk2002@naver.com>2021-03-15 11:29:16 +0900
committerGitHub <noreply@github.com>2021-03-15 11:29:16 +0900
commitc3208ac991827f16f4fef1c28aaaede564221a2e (patch)
tree96e75aeb23c6fa2c171f86e5a0c2b1863eafdc45 /src/main/java/gregtech/common/items/ItemComb.java
parenta3cc1426621fb853a124b548eba4d1d91d4f97c3 (diff)
downloadGT5-Unofficial-c3208ac991827f16f4fef1c28aaaede564221a2e.tar.gz
GT5-Unofficial-c3208ac991827f16f4fef1c28aaaede564221a2e.tar.bz2
GT5-Unofficial-c3208ac991827f16f4fef1c28aaaede564221a2e.zip
Update ItemComb.java
changed minimum Tier that needs cleanRoom for autoclave and chemical process
Diffstat (limited to 'src/main/java/gregtech/common/items/ItemComb.java')
-rw-r--r--src/main/java/gregtech/common/items/ItemComb.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/items/ItemComb.java b/src/main/java/gregtech/common/items/ItemComb.java
index 5cb26bb429..91e44a5bdb 100644
--- a/src/main/java/gregtech/common/items/ItemComb.java
+++ b/src/main/java/gregtech/common/items/ItemComb.java
@@ -491,7 +491,7 @@ public class ItemComb extends Item {
}
/**
- * @param volt required Tier of system. If it's lower than MV, it will also add forestry centrifuge.
+ * @param volt required Tier of system. If it's lower than MV, it will also add forestry centrifuge. If its higher than
* @param aItem can be more than 6. but Over 6 will be ignored in Gregtech Centrifuge.
**/
public void addCentrifugeToItemStack(CombType comb, ItemStack[] aItem, int[] chance, Voltage volt) {
@@ -563,7 +563,7 @@ public class ItemComb extends Item {
}
/**@return rather the CleanRoom is needed for the process in this Tier. (if Higher than HV tier)**/
public boolean getCleanRoomNeeded() {
- return this.compareTo(Voltage.HV) > 0;
+ return this.compareTo(Voltage.IV) > 0;
}
}
}