From: terencehill Date: Sat, 20 Jul 2019 01:48:28 +0000 (+0200) Subject: Temporarly use shorter messages X-Git-Tag: xonotic-v0.8.5~1455 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=afcb66fc4374890b1a33a0a244b8ae34dcdea6b0;p=xonotic%2Fxonotic-data.pk3dir.git Temporarly use shorter messages --- 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 )