X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fmodules%2Fglobal.mod%2Fcmd_global_restart.c;h=80f4403520302900c4fc24281ac8a29540847800;hb=e9d8fc51ef743296c6b788dcabba46cbfab05086;hp=4e057e860d6984f7b94426f34d9a581340981e1a;hpb=78e040af3fcc36ab684611c0f98b4381ff420878;p=NeonServV5.git diff --git a/src/modules/global.mod/cmd_global_restart.c b/src/modules/global.mod/cmd_global_restart.c index 4e057e8..80f4403 100644 --- a/src/modules/global.mod/cmd_global_restart.c +++ b/src/modules/global.mod/cmd_global_restart.c @@ -1,4 +1,4 @@ -/* cmd_global_restart.c - NeonServ v5.5 +/* cmd_global_restart.c - NeonServ v5.6 * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify @@ -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); }