aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-07-04 17:47:57 +0100
committerGitHub <noreply@github.com>2023-07-04 18:47:57 +0200
commit9e884e6eb1a0d5627c95a030e8b50060235bb62d (patch)
tree0f53b3d5fed84bd39a852a2eb6cb81d547749b32 /src/main
parent6a3fb59df8bdc0c25754331ec43c25ba532e3cb4 (diff)
downloadGT5-Unofficial-9e884e6eb1a0d5627c95a030e8b50060235bb62d.tar.gz
GT5-Unofficial-9e884e6eb1a0d5627c95a030e8b50060235bb62d.tar.bz2
GT5-Unofficial-9e884e6eb1a0d5627c95a030e8b50060235bb62d.zip
fix europa blizz drops (#684)
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/gtPlusPlus/core/common/CommonProxy.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/gtPlusPlus/core/common/CommonProxy.java b/src/main/java/gtPlusPlus/core/common/CommonProxy.java
index f42a8a5ee5..1f4e034179 100644
--- a/src/main/java/gtPlusPlus/core/common/CommonProxy.java
+++ b/src/main/java/gtPlusPlus/core/common/CommonProxy.java
@@ -257,9 +257,8 @@ public class CommonProxy {
}
// GalaxySpace Support
- if (ReflectionUtils.doesClassExist("galaxyspace.SolarSystem.moons.europa.entities.EntityEvolvedColdBlaze")) {
- Class<?> aColdBlaze = ReflectionUtils
- .getClass("galaxyspace.SolarSystem.moons.europa.entities.EntityEvolvedColdBlaze");
+ if (ReflectionUtils.doesClassExist("galaxyspace.core.entity.mob.EntityEvolvedColdBlaze")) {
+ Class<?> aColdBlaze = ReflectionUtils.getClass("galaxyspace.core.entity.mob.EntityEvolvedColdBlaze");
ItemStack aSmallBlizz, aTinyBlizz, aSmallCryo, aTinyCryo;
aSmallBlizz = ItemUtils.getItemStackOfAmountFromOreDict("dustSmallBlizz", 1);
aTinyBlizz = ItemUtils.getItemStackOfAmountFromOreDict("dustTinyBlizz", 1);