diff options
author | kaelima <kaelima@live.se> | 2012-11-13 15:45:01 +0100 |
---|---|---|
committer | kaelima <kaelima@live.se> | 2012-11-13 15:45:01 +0100 |
commit | ef7f6b7c1eb7866c57e5a31a386f5a8d55c8fd22 (patch) | |
tree | 4a7e832e88de938ce546b41ad9c1398d3a184cc9 /src | |
parent | 94cca94017d8652ce8efebed15894ea09dedf598 (diff) | |
parent | e61c09242af27ebad212ad9342dd58f12d35af06 (diff) |
Merge branch 'mmaps' of github.com:TrinityCore/TrinityCore into mmaps
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Commands/cs_mmaps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_mmaps.cpp b/src/server/scripts/Commands/cs_mmaps.cpp index c3f757614e2..c17c01adc33 100644 --- a/src/server/scripts/Commands/cs_mmaps.cpp +++ b/src/server/scripts/Commands/cs_mmaps.cpp @@ -96,7 +96,7 @@ public: bool result = path.CalculatePath(x, y, z); PointsArray pointPath = path.GetPath(); - handler->PSendSysMessage("%s's path to %s:", target->GetName(), player->GetName()); + handler->PSendSysMessage("%s's path to %s:", target->GetName().c_str(), player->GetName().c_str()); handler->PSendSysMessage("Building: %s", useStraightPath ? "StraightPath" : "SmoothPath"); handler->PSendSysMessage("Result: %s - Length: %i - Type: %u", (result ? "true" : "false"), pointPath.size(), path.GetPathType()); |