]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Temporarly use shorter messages
authorterencehill <piuntn@gmail.com>
Sat, 20 Jul 2019 01:48:28 +0000 (03:48 +0200)
committerterencehill <piuntn@gmail.com>
Sat, 20 Jul 2019 01:48:28 +0000 (03:48 +0200)
qcsrc/common/minigames/minigame/pp.qc
qcsrc/common/minigames/minigame/ttt.qc

index 4ea08c5d6ff1af6471095c94b9673fab5cb6e914..1dc640ce5b25908d1272a0dc5ac919c346cb209b 100644 (file)
@@ -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 )
index dd7bf3c62a0c39830bd8a49dac5e95d4cc3abfdc..767c9cd1fe0d90f74f7c2720c63af8148736face 100644 (file)
@@ -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 )