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:
parent
6b176bebf3
commit
7c1565a68c
|
@ -92,10 +92,10 @@ public class PotionEventHandlers {
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
List<EntityLivingBase> noGravityList = noGravityListMap.get(event.getEntityLiving().getEntityWorld());
|
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);
|
eventEntityLiving.setNoGravity(true);
|
||||||
noGravityList.add(eventEntityLiving);
|
noGravityList.add(eventEntityLiving);
|
||||||
} else {
|
} else if (noGravityList.contains(eventEntityLiving)) {
|
||||||
eventEntityLiving.setNoGravity(false);
|
eventEntityLiving.setNoGravity(false);
|
||||||
noGravityList.remove(eventEntityLiving);
|
noGravityList.remove(eventEntityLiving);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue