summaryrefslogtreecommitdiff
path: root/src/coremods/core_stub.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2015-01-11 14:35:21 +0100
committerAttila Molnar <attilamolnar@hush.com>2015-01-11 14:35:21 +0100
commit1f186bd6505e263ccc7ce1ec38cf6a5d5a8a85c5 (patch)
tree7024cc70c6f006cc91123be82455ad04456ca777 /src/coremods/core_stub.cpp
parent953ff6dd861964db80a1142cdcccc7a9ec1d8efd (diff)
Fix issues with some numerics introduced in the WriteNumeric() conversion and elsewhere
Diffstat (limited to 'src/coremods/core_stub.cpp')
-rw-r--r--src/coremods/core_stub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_stub.cpp b/src/coremods/core_stub.cpp
index bb6590261..28adb9e6a 100644
--- a/src/coremods/core_stub.cpp
+++ b/src/coremods/core_stub.cpp
@@ -102,7 +102,7 @@ class CommandServer : public Command
}
else
{
- user->WriteNumeric(ERR_NOTREGISTERED, ":You may not register as a server (servers have separate ports from clients, change your config)");
+ user->WriteNumeric(ERR_NOTREGISTERED, "SERVER :You may not register as a server (servers have separate ports from clients, change your config)");
}
return CMD_FAILURE;
}