@@ -2174,7 +2174,7 @@ class misc_commandscript : public CommandScript
21742174 return false ;
21752175 }
21762176
2177- handler->PSendSysMessage (LANG_MOVEGENS_LIST, (unit->GetTypeId () == TYPEID_PLAYER ? " Player" : " Creature" ), unit->GetGUID ().GetCounter ());
2177+ handler->PSendSysMessage (LANG_MOVEGENS_LIST, (unit->GetTypeId () == TYPEID_PLAYER ? " Player" : " Creature" ), unit->GetGUID ().ToString (). c_str ());
21782178
21792179 if (unit->GetMotionMaster ()->Empty ())
21802180 {
@@ -2206,17 +2206,17 @@ class misc_commandscript : public CommandScript
22062206 if (info.TargetGUID .IsEmpty ())
22072207 handler->SendSysMessage (LANG_MOVEGENS_CHASE_NULL);
22082208 else if (info.TargetGUID .IsPlayer ())
2209- handler->PSendSysMessage (LANG_MOVEGENS_CHASE_PLAYER, info.TargetName .c_str (), info.TargetGUID .GetCounter ());
2209+ handler->PSendSysMessage (LANG_MOVEGENS_CHASE_PLAYER, info.TargetName .c_str (), info.TargetGUID .ToString (). c_str ());
22102210 else
2211- handler->PSendSysMessage (LANG_MOVEGENS_CHASE_CREATURE, info.TargetName .c_str (), info.TargetGUID .GetCounter ());
2211+ handler->PSendSysMessage (LANG_MOVEGENS_CHASE_CREATURE, info.TargetName .c_str (), info.TargetGUID .ToString (). c_str ());
22122212 break ;
22132213 case FOLLOW_MOTION_TYPE:
22142214 if (info.TargetGUID .IsEmpty ())
22152215 handler->SendSysMessage (LANG_MOVEGENS_FOLLOW_NULL);
22162216 else if (info.TargetGUID .IsPlayer ())
2217- handler->PSendSysMessage (LANG_MOVEGENS_FOLLOW_PLAYER, info.TargetName .c_str (), info.TargetGUID .GetCounter ());
2217+ handler->PSendSysMessage (LANG_MOVEGENS_FOLLOW_PLAYER, info.TargetName .c_str (), info.TargetGUID .ToString (). c_str ());
22182218 else
2219- handler->PSendSysMessage (LANG_MOVEGENS_FOLLOW_CREATURE, info.TargetName .c_str (), info.TargetGUID .GetCounter ());
2219+ handler->PSendSysMessage (LANG_MOVEGENS_FOLLOW_CREATURE, info.TargetName .c_str (), info.TargetGUID .ToString (). c_str ());
22202220 break ;
22212221 case HOME_MOTION_TYPE:
22222222 if (unit->GetTypeId () == TYPEID_UNIT)
0 commit comments