From: Mario Date: Sat, 28 Dec 2019 13:34:08 +0000 (+1000) Subject: Use a semicolon instead of a new line, fixes weird character in the quit tooltip X-Git-Tag: xonotic-v0.8.5~1178 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=c06a3a14f0ba50c9a5665d98f26c90735df39bde;p=xonotic%2Fxonotic-data.pk3dir.git Use a semicolon instead of a new line, fixes weird character in the quit tooltip --- diff --git a/qcsrc/menu/xonotic/dialog_quit.qc b/qcsrc/menu/xonotic/dialog_quit.qc index e68b967a0..3f5b18712 100644 --- a/qcsrc/menu/xonotic/dialog_quit.qc +++ b/qcsrc/menu/xonotic/dialog_quit.qc @@ -11,7 +11,7 @@ void XonoticQuitDialog_fill(entity me) me.TD(me, 1, 2, makeXonoticTextLabel(0.5, _("Are you sure you want to quit?"))); me.TR(me); me.TR(me); - me.TD(me, 1, 1, e = makeXonoticCommandButton_T(_("Yes"), '1 0 0', "echo ]quit\nquit", 0, + me.TD(me, 1, 1, e = makeXonoticCommandButton_T(_("Yes"), '1 0 0', "echo ]quit; quit", 0, _("Back to work..."))); me.TD(me, 1, 1, e = makeXonoticButton_T(_("No"), '0 1 0', _("I got some more fragging to do!")));