summaryrefslogtreecommitdiff
path: root/console_cmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'console_cmds.c')
-rw-r--r--console_cmds.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/console_cmds.c b/console_cmds.c
index e412aa0fd..e513af4ba 100644
--- a/console_cmds.c
+++ b/console_cmds.c
@@ -780,8 +780,10 @@ DEF_CONSOLE_CMD(ConSet) {
if (argc == 3) {
if (strcmp(argv[2], "on") == 0 || atoi(argv[2]) == 1)
_network_advertise = true;
- else
+ else {
+ NetworkUDPRemoveAdvertise();
_network_advertise = false;
+ }
IConsolePrintF(_iconsole_color_warning, "Server-advertise changed to '%s'", (_network_advertise)?"on":"off");
} else {
IConsolePrintF(_iconsole_color_default, "Current server-advertise is '%s'", (_network_advertise)?"on":"off");