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

This commit is contained in:
joschiwald
2013-07-21 01:38:21 +02:00
parent 1ac4f0a9c1
commit 380cf5d241
15 changed files with 189 additions and 186 deletions
+1 -1
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;