Fixed the Aura gauge not resetting in chunks that do not have any Aura

This commit is contained in:
WayofTime 2016-07-28 09:28:43 -04:00
parent c36b7fed9d
commit bb3081e2a5
2 changed files with 4 additions and 0 deletions

View file

@ -4,6 +4,7 @@ Version 2.0.3-54
- Eliminated some of the "wonkiness" from the Air Sigil - Eliminated some of the "wonkiness" from the Air Sigil
- Fixed the Hellfire Forge so that swapping Tartaric gems will not give free stuff. - Fixed the Hellfire Forge so that swapping Tartaric gems will not give free stuff.
- Added the Potion Flask and a few of the potion effects - max amount of effects that can be added to a single flask is currently 3. - Added the Potion Flask and a few of the potion effects - max amount of effects that can be added to a single flask is currently 3.
- Fixed the Aura gauge not resetting in chunks that do not have any Aura
------------------------------------------------------ ------------------------------------------------------
Version 2.0.3-53 Version 2.0.3-53

View file

@ -142,6 +142,9 @@ public class GenericHandler
if (holder != null) if (holder != null)
{ {
BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(holder), (EntityPlayerMP) player); BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(holder), (EntityPlayerMP) player);
} else
{
BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(new DemonWillHolder()), (EntityPlayerMP) player);
} }
} }
} }