aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/Player.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp
index b66df6ce197..d992bfd4a65 100644
--- a/src/game/Player.cpp
+++ b/src/game/Player.cpp
@@ -20370,9 +20370,7 @@ uint32 Player::GetPhaseMaskForSpawn() const
else
{
AuraList const& phases = GetAurasByType(SPELL_AURA_PHASE);
- if(phases.empty())
- phase = GetPhaseMask();
- else
+ if(!phases.empty())
phase = phases.front()->GetMiscValue();
}
@@ -20381,4 +20379,4 @@ uint32 Player::GetPhaseMaskForSpawn() const
return n_phase;
return PHASEMASK_NORMAL;
-} \ No newline at end of file
+}