Fixed a bug in the server "stop" command.

Was not setting a server as inactive when stopping.
This commit is contained in:
Marcus Whybrow 2012-05-31 03:38:04 +01:00
parent 785c5730ec
commit 90d32af19d

2
msm
View File

@ -1582,7 +1582,7 @@ main() {
server_start $id
;;
stop)
server_set_active $1 "inactive"
server_set_active $id "inactive"
if [[ $3 != "now" ]]; then
server_stop $id
else