diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-21 16:01:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-21 16:01:23 +0300 |
commit | 29c335b22add00a7542f229714626df96e73530c (patch) | |
tree | e505cafac78ffd4e67aada23725114cb328b1d25 | |
parent | 84b7634a85d0474d83af7002ee7639cf421686bf (diff) | |
download | plus-29c335b22add00a7542f229714626df96e73530c.tar.gz plus-29c335b22add00a7542f229714626df96e73530c.tar.bz2 plus-29c335b22add00a7542f229714626df96e73530c.tar.xz plus-29c335b22add00a7542f229714626df96e73530c.zip |
Fix compilation warning.
-rw-r--r-- | src/gui/widgets/tabs/setup_players.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/tabs/setup_players.cpp b/src/gui/widgets/tabs/setup_players.cpp index f749e347f..0ed677af0 100644 --- a/src/gui/widgets/tabs/setup_players.cpp +++ b/src/gui/widgets/tabs/setup_players.cpp @@ -166,5 +166,5 @@ void Setup_Players::apply() { SetupTabScroll::apply(); settings.enableRemoteCommands = serverConfig.getValue( - "enableRemoteCommands", true); + "enableRemoteCommands", 1); } |