rename files

This commit is contained in:
Aokromes
2018-03-09 22:39:02 +01:00
parent 4ce7b5d2f9
commit 83627cf2c3
10 changed files with 9 additions and 0 deletions

View File

@@ -183,6 +183,9 @@ void PhasingHandler::ResetPhaseShift(WorldObject* object)
void PhasingHandler::InheritPhaseShift(WorldObject* target, WorldObject const* source)
{
if (!source)
return;
target->GetPhaseShift() = source->GetPhaseShift();
target->GetSuppressedPhaseShift() = source->GetSuppressedPhaseShift();
}