diff options
-rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index d854edfaf..5d1c7f575 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -482,7 +482,7 @@ bool ValidateSID(ServerConfig* conf, const char*, const char*, ValueItem &data) if (*sid && !conf->GetInstance()->IsSID(sid)) { - throw CoreException(std::string(sid) + " is not a valid server ID."); + throw CoreException(std::string(sid) + " is not a valid server ID. A server ID must be 3 characters long, with the first character a digit and the next two characters a digit or letter."); } return true; |