Quick fix for ritual of grounding, which was applying gravity to every entity. (#1576)

Added a check to determine if an entity already has no gravity, in which case it would not track them.
This commit is contained in:
Phil 2019-04-05 17:26:18 -04:00 committed by Nick Ignoffo
parent 6b176bebf3
commit 7c1565a68c

View file

@ -92,10 +92,10 @@ public class PotionEventHandlers {
// }
// }
List<EntityLivingBase> 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);
}