diff --git a/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java b/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java index 46b12fc1..18d12e9c 100644 --- a/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java +++ b/src/main/java/WayofTime/bloodmagic/potion/PotionEventHandlers.java @@ -92,10 +92,10 @@ public class PotionEventHandlers { // } // } List noGravityList = noGravityListMap.get(event.getEntityLiving().getEntityWorld()); - if ((!(eventEntityLiving instanceof EntityPlayer) || !((EntityPlayer) eventEntityLiving).isSpectator()) && eventEntityLiving.isPotionActive(RegistrarBloodMagic.SUSPENDED)) { + if (eventEntityLiving.isPotionActive(RegistrarBloodMagic.SUSPENDED) && !eventEntityLiving.hasNoGravity()) { eventEntityLiving.setNoGravity(true); noGravityList.add(eventEntityLiving); - } else { + } else if (noGravityList.contains(eventEntityLiving)) { eventEntityLiving.setNoGravity(false); noGravityList.remove(eventEntityLiving); }