From: Mario Date: Mon, 16 Nov 2015 07:53:02 +0000 (+1000) Subject: Fix victory message X-Git-Tag: xonotic-v0.8.2~1654^2 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=a7cad9d181dca690b26d6e3c613380b5422860ff;p=xonotic%2Fxonotic-data.pk3dir.git Fix victory message --- diff --git a/qcsrc/common/minigames/minigame/bd.qc b/qcsrc/common/minigames/minigame/bd.qc index 69505ecf1..6c096a76a 100644 --- a/qcsrc/common/minigames/minigame/bd.qc +++ b/qcsrc/common/minigames/minigame/bd.qc @@ -814,7 +814,7 @@ void bd_hud_board(vector pos, vector mySize) string victory_text = "Game over!"; if(active_minigame.minigame_flags & BD_TURN_WIN) - victory_text = "Well done! Click 'Next Match' to continue"; + victory_text = "Well done! Click 'Next Level' to continue"; vector win_pos = pos+eY*(mySize_y-winfs_y)/2; vector win_sz; @@ -887,9 +887,9 @@ string bd_turn_to_string(int turnflags) if ( turnflags & BD_TURN_WIN ) if(random() > 0.5) - return _("Tubular! Press ""Next Level"" to continue!"); + return _("Tubular! Press \"Next Level\" to continue!"); else - return _("Wicked! Press ""Next Level"" to continue!"); + return _("Wicked! Press \"Next Level\" to continue!"); if( turnflags & BD_TURN_EDIT ) return _("Press the space bar to change your currently selected tile");