diff --git a/changelog.txt b/changelog.txt index 92d70fc4..ea5663a4 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java b/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java index a2e4156c..40f457cb 100644 --- a/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java +++ b/src/main/java/WayofTime/bloodmagic/util/handler/event/GenericHandler.java @@ -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); } } }