summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-08-25 00:14:49 +0200
committerGitHub <noreply@github.com>2021-08-25 00:14:49 +0200
commitfc51d346cda4f834b411592f09a0e25072f058a2 (patch)
tree9bd277e5dcc0830ac0af2e4618435714c1928a91
parentfbe1b9425f9efcc305b74628a8d1e440004cc39a (diff)
downloadwiki-fc51d346cda4f834b411592f09a0e25072f058a2.tar.gz
wiki-fc51d346cda4f834b411592f09a0e25072f058a2.tar.bz2
wiki-fc51d346cda4f834b411592f09a0e25072f058a2.zip
chore: Fix some typos in Exit Codes
-rw-r--r--docs/exitcodes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/exitcodes.md b/docs/exitcodes.md
index 08eebf3..10fb665 100644
--- a/docs/exitcodes.md
+++ b/docs/exitcodes.md
@@ -13,7 +13,7 @@ enum ShutdownExitCode
SHUTDOWN_EXIT_CODE is called when you use the commands **.server shutdown**, **.server idleshutdown**, **.server exit** or if the [m_serviceStatus == 0](https://github.com/azerothcore/azerothcore-wotlk/blob/a594bf5b290e5476c61bab29809a079e93c5daa2/src/server/worldserver/Main.cpp#L575-L581) for Windows.
-RESTART_EXIT_CODE is called when you use the commands **..server restart** and **.server idlerestart**.
+RESTART_EXIT_CODE is called when you use the commands **.server restart** and **.server idlerestart**.
ERROR_EXIT_CODE is called when the server crashes. This can be due to due to guid/id/entry overflow, [Network.Threads](https://github.com/azerothcore/azerothcore-wotlk/blob/a594bf5b290e5476c61bab29809a079e93c5daa2/src/server/worldserver/worldserver.conf.dist#L2909-L2913) being <= 0 or if the server cannot initialize network.
@@ -28,7 +28,7 @@ The best way to know where all the exit codes are called is by finding them in t
.server restart #delay [#exit_code]
```
-The `.server shutdown/restart`, `.server idleshutdown/restart` commands all have an argument for **[#exit_code]**.
+The **.server shutdown/restart**, **.server idleshutdown/restart** commands all have an argument for **[#exit_code]**.
The default exit code for shutdown is always 0 and the default exit code for restart is always 2 if the argument is left blank.