Fix creating favorite when not on view favorite servers

This commit is contained in:
Zack Middleton 2013-02-07 21:03:33 -06:00
parent fe47952bf5
commit 7ccdff6e12

View file

@ -3481,7 +3481,6 @@ static void UI_RunMenuScript(char **args) {
}
}
} else if (Q_stricmp(name, "createFavorite") == 0) {
if (ui_netSource.integer == UIAS_FAVORITES) {
char name[MAX_NAME_LENGTH];
char addr[MAX_ADDRESSLENGTH];
int res;
@ -3504,7 +3503,6 @@ static void UI_RunMenuScript(char **args) {
Com_Printf("Added favorite server %s\n", addr);
}
}
}
} else if (Q_stricmp(name, "orders") == 0) {
const char *orders;
if (String_Parse(args, &orders)) {