tidied up main.c code
[NeonServV5.git] / src / modules / global.mod / cmd_global_restart.c
index 64ef5a52d4d78089cb5cfd37b3903a452fc61c95..80f4403520302900c4fc24281ac8a29540847800 100644 (file)
@@ -22,7 +22,5 @@
 */
 
 CMD_BIND(global_cmd_restart) {
-    int hard_restart = 1;
-    if(argc > 0 && !stricmp(argv[0], "soft")) hard_restart = 0;
-    restart_bot(hard_restart);
+    restart_bot(0);
 }