Core/Misc: replace (Player*) casts with ToPlayer()

This commit is contained in:
joschiwald
2013-07-20 21:52:05 +02:00
parent 1ac4f0a9c1
commit 380cf5d241
15 changed files with 189 additions and 186 deletions

View File

@@ -258,7 +258,7 @@ public:
if (!unit || (unit->GetTypeId() != TYPEID_PLAYER))
player = handler->GetSession()->GetPlayer();
else
player = (Player*)unit;
player = unit->ToPlayer();
if (!unit)
unit = player;