aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared
diff options
context:
space:
mode:
authorkaelima <kaelima@live.se>2012-08-10 14:25:04 +0200
committerkaelima <kaelima@live.se>2012-08-10 14:25:04 +0200
commit878f88b25062f97553274aa3d3448e99bdcc1a0a (patch)
tree84a05a8cdb05eecd3d6f9b479376f518ca347354 /src/server/shared
parent9538fb6d5a508adbebc9dd94ce25cbca6bd48789 (diff)
Core/PacketIO:
- Enable a bunch of spline packets. - Correct emblems written in SMSG_GUILD_INVITE - Revert changes in GuildCommandType and add more errors to GuildCommandError - Rename Powers to match names in Lua code from client
Diffstat (limited to 'src/server/shared')
-rwxr-xr-xsrc/server/shared/Packets/ByteBuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h
index 51c253057d2..5b7d335d0fa 100755
--- a/src/server/shared/Packets/ByteBuffer.h
+++ b/src/server/shared/Packets/ByteBuffer.h
@@ -54,7 +54,7 @@ class ByteBufferPositionException : public ByteBufferException
{
ACE_Stack_Trace trace;
- sLog->outError(LOG_FILTER_GENERAL, "Attempted to %s value with size: "SIZEFMTD" in ByteBuffer (pos: " SIZEFMTD " size: "SIZEFMTD")\n[Stacktrace: %s]" ,
+ sLog->outError(LOG_FILTER_GENERAL, "Attempted to %s value with size: "SIZEFMTD" in ByteBuffer (pos: " SIZEFMTD " size: "SIZEFMTD")\n[Stack trace: %s]" ,
(_add ? "put" : "get"), ValueSize, Pos, Size, trace.c_str());
}
@@ -76,7 +76,7 @@ class ByteBufferSourceException : public ByteBufferException
{
ACE_Stack_Trace trace;
- sLog->outError(LOG_FILTER_GENERAL, "Attempted to put a %s in ByteBuffer (pos: "SIZEFMTD" size: "SIZEFMTD")\n[Stacktrace: %s]",
+ sLog->outError(LOG_FILTER_GENERAL, "Attempted to put a %s in ByteBuffer (pos: "SIZEFMTD" size: "SIZEFMTD")\n[Stack trace: %s]",
(ValueSize > 0 ? "NULL-pointer" : "zero-sized value"), Pos, Size, trace.c_str());
}
};