aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders
diff options
context:
space:
mode:
authorJakub <53441451+kuba6000@users.noreply.github.com>2023-06-08 19:54:59 +0200
committerGitHub <noreply@github.com>2023-06-08 19:54:59 +0200
commit9b98654db3a0beb00588058b492afe6fa4baaa3e (patch)
tree8d4521b7f872afc1bb539007acb7c89e1073166f /src/main/java/gregtech/loaders
parent2ae49a1fbc8eee056b9f7de127fc6d8fe72ee5ab (diff)
downloadGT5-Unofficial-9b98654db3a0beb00588058b492afe6fa4baaa3e.tar.gz
GT5-Unofficial-9b98654db3a0beb00588058b492afe6fa4baaa3e.tar.bz2
GT5-Unofficial-9b98654db3a0beb00588058b492afe6fa4baaa3e.zip
fix (#2069)
Diffstat (limited to 'src/main/java/gregtech/loaders')
-rw-r--r--src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java b/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java
index e5aaecbdde..53dbcb2860 100644
--- a/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java
+++ b/src/main/java/gregtech/loaders/misc/GT_BeeDefinition.java
@@ -2356,7 +2356,7 @@ public enum GT_BeeDefinition implements IBeeDefinition {
}, dis -> {
IBeeMutationCustom tMutation = dis.registerMutation(OIL, INFINITYCATALYST, 4);
// UHV Replicator (UU-Matter)
- tMutation.requireResource(GameRegistry.findBlock(GregTech.ID, "gt.blockmachines"), 11003);
+ GregTech_API.sGTCompleteLoad.add(() -> tMutation.requireResource(GregTech_API.sBlockMachines, 11003));
}),
// Noble Gas Line
@@ -2566,7 +2566,7 @@ public enum GT_BeeDefinition implements IBeeDefinition {
beeSpecies.setHasEffect();
}, template -> AlleleHelper.instance.set(template, LIFESPAN, Lifespan.SHORTEST), dis -> {
IBeeMutationCustom tMutation = dis.registerMutation(INFINITYCATALYST, NAQUADRIA, 5);
- tMutation.requireResource(GameRegistry.findBlock(GregTech.ID, "gt.blockmachines"), 4684);
+ tMutation.requireResource(GregTech_API.sBlockMachines, 4684);
tMutation.addMutationCondition(new GT_Bees.DimensionMutationCondition(100, "Deep Dark")); // Deep Dark
// dim
});