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

@ -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);
}
}
}