aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSubv <s.v.h21@hotmail.com>2012-11-12 04:49:27 -0800
committerSubv <s.v.h21@hotmail.com>2012-11-12 04:49:27 -0800
commite61c09242af27ebad212ad9342dd58f12d35af06 (patch)
tree660ee4c9d56ee79fcf9bf61e95f8e8f686f87bc6 /src
parent68291eed03b44f5659f7f5143ed66b2f0e67e026 (diff)
parent7249865a12e6483b925fae468bd899b73c190e39 (diff)
Merge pull request #8299 from rocky517/mmaps
Fixed build.
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Commands/cs_mmaps.cpp2
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());