From: terencehill Date: Sat, 9 Mar 2013 16:33:40 +0000 (+0100) Subject: Bad parameter for round over messages in Arena and CA X-Git-Tag: xonotic-v0.7.0~61^2~17 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=92a6362a53b8f2a60896f3207e05f552bedbbced;p=xonotic%2Fxonotic-data.pk3dir.git Bad parameter for round over messages in Arena and CA --- diff --git a/qcsrc/server/mutators/gamemode_arena.qc b/qcsrc/server/mutators/gamemode_arena.qc index b0757fd82..df82e23e0 100644 --- a/qcsrc/server/mutators/gamemode_arena.qc +++ b/qcsrc/server/mutators/gamemode_arena.qc @@ -63,7 +63,7 @@ float Arena_CheckWinner() if(round_handler_GetTimeLeft() <= 0) { Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_ROUND_OVER); - Send_Notification(NOTIF_ALL, world, MSG_INFO, CENTER_ROUND_OVER); + Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_ROUND_OVER); round_handler_Init(5, autocvar_g_arena_warmup, autocvar_g_arena_round_timelimit); return 1; } diff --git a/qcsrc/server/mutators/gamemode_ca.qc b/qcsrc/server/mutators/gamemode_ca.qc index f383d1296..9a1e6b206 100644 --- a/qcsrc/server/mutators/gamemode_ca.qc +++ b/qcsrc/server/mutators/gamemode_ca.qc @@ -70,7 +70,7 @@ float CA_CheckWinner() if(round_handler_GetTimeLeft() <= 0) { Send_Notification(NOTIF_ALL, world, MSG_CENTER, CENTER_ROUND_OVER); - Send_Notification(NOTIF_ALL, world, MSG_INFO, CENTER_ROUND_OVER); + Send_Notification(NOTIF_ALL, world, MSG_INFO, INFO_ROUND_OVER); allowed_to_spawn = FALSE; round_handler_Init(5, autocvar_g_ca_warmup, autocvar_g_ca_round_timelimit); return 1;