From afcb66fc4374890b1a33a0a244b8ae34dcdea6b0 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sat, 20 Jul 2019 03:48:28 +0200 Subject: [PATCH] Temporarly use shorter messages --- qcsrc/common/minigames/minigame/pp.qc | 6 ++++-- qcsrc/common/minigames/minigame/ttt.qc | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/qcsrc/common/minigames/minigame/pp.qc b/qcsrc/common/minigames/minigame/pp.qc index 4ea08c5d6..1dc640ce5 100644 --- a/qcsrc/common/minigames/minigame/pp.qc +++ b/qcsrc/common/minigames/minigame/pp.qc @@ -440,8 +440,10 @@ string pp_turn_to_string(int turnflags) if ( turnflags & PP_TURN_WIN ) { if ( (turnflags&PP_TURN_TEAM) != minigame_self.team ) - return _("You lost the game!\nSelect \"^1Next Match^7\" on the menu for a rematch!"); - return _("You win!\nSelect \"^1Next Match^7\" on the menu to start a new match!"); + //return _("You lost the game!\nSelect \"^1Next Match^7\" on the menu for a rematch!"); + return _("You lost the game!"); + //return _("You win!\nSelect \"^1Next Match^7\" on the menu to start a new match!"); + return _("You win!"); } if ( turnflags & PP_TURN_NEXT ) diff --git a/qcsrc/common/minigames/minigame/ttt.qc b/qcsrc/common/minigames/minigame/ttt.qc index dd7bf3c62..767c9cd1f 100644 --- a/qcsrc/common/minigames/minigame/ttt.qc +++ b/qcsrc/common/minigames/minigame/ttt.qc @@ -321,8 +321,10 @@ string ttt_turn_to_string(int turnflags) if ( turnflags & TTT_TURN_WIN ) { if ( (turnflags&TTT_TURN_TEAM) != minigame_self.team ) - return _("You lost the game!\nSelect \"^1Next Match^7\" on the menu for a rematch!"); // TODO: proper "you win" banner instead of hijacking the help message - return _("You win!\nSelect \"^1Next Match^7\" on the menu to start a new match!"); + //return _("You lost the game!\nSelect \"^1Next Match^7\" on the menu for a rematch!"); // TODO: proper "you win" banner instead of hijacking the help message + return _("You lost the game!"); // TODO: proper "you win" banner instead of hijacking the help message + //return _("You win!\nSelect \"^1Next Match^7\" on the menu to start a new match!"); + return _("You win!"); } if ( turnflags & TTT_TURN_NEXT ) -- 2.39.2