Fixed the Aura gauge not resetting in chunks that do not have any Aura
This commit is contained in:
parent
c36b7fed9d
commit
bb3081e2a5
|
@ -4,6 +4,7 @@ Version 2.0.3-54
|
|||
- Eliminated some of the "wonkiness" from the Air Sigil
|
||||
- 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.
|
||||
- Fixed the Aura gauge not resetting in chunks that do not have any Aura
|
||||
|
||||
------------------------------------------------------
|
||||
Version 2.0.3-53
|
||||
|
|
|
@ -142,6 +142,9 @@ public class GenericHandler
|
|||
if (holder != null)
|
||||
{
|
||||
BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(holder), (EntityPlayerMP) player);
|
||||
} else
|
||||
{
|
||||
BloodMagicPacketHandler.sendTo(new DemonAuraPacketProcessor(new DemonWillHolder()), (EntityPlayerMP) player);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue