Core/Auras: fix elixir aura saving

This commit is contained in:
ariel-
2016-10-30 15:20:54 -03:00
committed by Aokromes
parent 368641deb5
commit 1ec9685547

View File

@@ -1013,8 +1013,8 @@ bool Aura::CanBeSaved() const
if (IsUsingCharges() && !GetCharges())
return false;
// don't save auras triggered by items, they'll be recasted on login if necessary
if (GetCastItemGUID())
// don't save permanent auras triggered by items, they'll be recasted on login if necessary
if (GetCastItemGUID() && IsPermanent())
return false;
return true;