Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
fix europa blizz drops (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
chochem committed Jul 4, 2023
1 parent 6a3fb59 commit 9e884e6
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/java/gtPlusPlus/core/common/CommonProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,8 @@ public void registerCustomMobDrops() {
}

// 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);
Expand Down

0 comments on commit 9e884e6

Please sign in to comment.