aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/items/ItemComb.java
diff options
context:
space:
mode:
authorRunakai1 <48415331+Runakai1@users.noreply.github.com>2022-08-21 20:21:54 +0200
committerGitHub <noreply@github.com>2022-08-21 20:21:54 +0200
commit21c55380988962d8a585e57d311d311b31d87281 (patch)
treee002d396541f60221e39adcc5bee5eaf1d85ebbf /src/main/java/gregtech/common/items/ItemComb.java
parentc449b6f9ad1b32950bdfaab246da4ac4fa34bc85 (diff)
downloadGT5-Unofficial-21c55380988962d8a585e57d311d311b31d87281.tar.gz
GT5-Unofficial-21c55380988962d8a585e57d311d311b31d87281.tar.bz2
GT5-Unofficial-21c55380988962d8a585e57d311d311b31d87281.zip
IndiumBee (#1282)
* IndiumBee Added Indiumbee * Bee change REduced chance to 2% added venus dim requirement * Updated Infinity Bee Infinity bee had a 100 chance divider which was unreasonably high considering its blocked from mutatron.
Diffstat (limited to 'src/main/java/gregtech/common/items/ItemComb.java')
-rw-r--r--src/main/java/gregtech/common/items/ItemComb.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/items/ItemComb.java b/src/main/java/gregtech/common/items/ItemComb.java
index 7957bdd33a..b6484d394f 100644
--- a/src/main/java/gregtech/common/items/ItemComb.java
+++ b/src/main/java/gregtech/common/items/ItemComb.java
@@ -232,6 +232,7 @@ public class ItemComb extends Item {
addProcessGT(CombType.COPPER, new Materials[] {Materials.Copper}, Voltage.LV);
addProcessGT(CombType.TIN, new Materials[] {Materials.Tin}, Voltage.LV);
addProcessGT(CombType.LEAD, new Materials[] {Materials.Lead}, Voltage.LV);
+ addProcessGT(CombType.INDIUM, new Materials[] {Materials.Indium}, Voltage.ZPM);
addProcessGT(CombType.NICKEL, new Materials[] {Materials.Nickel}, Voltage.LV);
addProcessGT(CombType.ZINC, new Materials[] {Materials.Zinc}, Voltage.LV);
addProcessGT(CombType.SILVER, new Materials[] {Materials.Silver}, Voltage.LV);