aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVolence <32358820+Volence@users.noreply.github.com>2024-08-25 07:43:11 -0400
committerGitHub <noreply@github.com>2024-08-25 11:43:11 +0000
commit6bfc9636f0b25a46b4dac1e417d2d8a129d477ca (patch)
tree2a089717375cc0716dc4264c9a4f5260e8f4f5e3 /src
parentcc83513f00681d232ebb6f89aee4fe2d81f131db (diff)
downloadGT5-Unofficial-6bfc9636f0b25a46b4dac1e417d2d8a129d477ca.tar.gz
GT5-Unofficial-6bfc9636f0b25a46b4dac1e417d2d8a129d477ca.tar.bz2
GT5-Unofficial-6bfc9636f0b25a46b4dac1e417d2d8a129d477ca.zip
Rename Dragon Blood bee and items (#2962)
* Change the Dragon Blood and items based around it to be Dragonblood be to further reflect the items it produces * Add lang instance for bee
Diffstat (limited to 'src')
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java2
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java2
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java2
-rw-r--r--src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java2
-rw-r--r--src/main/resources/assets/gregtech/lang/en_US.lang1
5 files changed, 5 insertions, 4 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java
index 31b14ed4e6..be1aa48d3c 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_CombType.java
@@ -9,7 +9,7 @@ import gtPlusPlus.xmod.forestry.bees.registry.GTPP_Bees;
public enum GTPP_CombType {
- DRAGONBLOOD(0, "Dragon Blood", true, 30, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20)),
+ DRAGONBLOOD(0, "Dragonblood", true, 30, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20)),
FORCE(1, "Force", true, 30, Utils.rgbtoHexValue(250, 250, 20), Utils.rgbtoHexValue(200, 200, 5));
public boolean mShowInList;
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java
index 9819c586cd..089b8cebf1 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_DropType.java
@@ -9,7 +9,7 @@ import gtPlusPlus.xmod.forestry.bees.registry.GTPP_Bees;
public enum GTPP_DropType {
- DRAGONBLOOD(0, "Dragon Blood", true, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20)),
+ DRAGONBLOOD(0, "Dragonblood", true, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20)),
FORCE(1, "Force", true, Utils.rgbtoHexValue(250, 250, 20), Utils.rgbtoHexValue(200, 200, 5));
public boolean mShowInList;
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java
index 66451c7581..56a8f37daf 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PollenType.java
@@ -9,7 +9,7 @@ import gtPlusPlus.xmod.forestry.bees.registry.GTPP_Bees;
public enum GTPP_PollenType {
- DRAGONBLOOD(0, "Dragon Blood", true, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20));
+ DRAGONBLOOD(0, "Dragonblood", true, Utils.rgbtoHexValue(220, 20, 20), Utils.rgbtoHexValue(20, 20, 20));
public boolean mShowInList;
public final Material mMaterial;
diff --git a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java
index eb3b617077..fc70d6232e 100644
--- a/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java
+++ b/src/main/java/gtPlusPlus/xmod/forestry/bees/handler/GTPP_PropolisType.java
@@ -9,7 +9,7 @@ import gtPlusPlus.xmod.forestry.bees.registry.GTPP_Bees;
public enum GTPP_PropolisType {
- DRAGONBLOOD(0, "Dragon Blood", true, Utils.rgbtoHexValue(220, 20, 20)),
+ DRAGONBLOOD(0, "Dragonblood", true, Utils.rgbtoHexValue(220, 20, 20)),
FORCE(1, "Force", true, Utils.rgbtoHexValue(250, 250, 20));
public boolean mShowInList;
diff --git a/src/main/resources/assets/gregtech/lang/en_US.lang b/src/main/resources/assets/gregtech/lang/en_US.lang
index ae6487e343..a113b94e6b 100644
--- a/src/main/resources/assets/gregtech/lang/en_US.lang
+++ b/src/main/resources/assets/gregtech/lang/en_US.lang
@@ -1399,6 +1399,7 @@ for.bees.species.fireessence=Fire Essence
for.bees.species.unknownwater=Unknown Liquid
for.bees.species.nethershard=Nether Shard
for.bees.species.endshard=Ender Shard
+for.bees.species.dragonblood=Dragonblood
for.mutation.condition.biomeid=Required Biome
for.mutation.condition.dim=Required Dimension