From: Mario Date: Tue, 8 Dec 2020 06:07:29 +0000 (+1000) Subject: Add a note to the first run dialog letting clients know stats are enabled and where... X-Git-Tag: xonotic-v0.8.5~639^2 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3845f610d74933f35799da28e5fd4e0a82f165f3;p=xonotic%2Fxonotic-data.pk3dir.git Add a note to the first run dialog letting clients know stats are enabled and where they can find the option to disable it --- diff --git a/qcsrc/menu/xonotic/dialog_firstrun.qc b/qcsrc/menu/xonotic/dialog_firstrun.qc index 0d3b5c975..6dc1cfcc0 100644 --- a/qcsrc/menu/xonotic/dialog_firstrun.qc +++ b/qcsrc/menu/xonotic/dialog_firstrun.qc @@ -82,6 +82,8 @@ void XonoticFirstRunDialog_fill(entity me) me.TD(me, 1, 1, e = makeXonoticRadioButton(1, "cl_allow_uid2name", "1", _("Yes"))); me.TD(me, 1, 1, e = makeXonoticRadioButton(1, "cl_allow_uid2name", "0", _("No"))); me.TD(me, 1, 1, e = makeXonoticRadioButton(1, "cl_allow_uid2name", "-1", _("Undecided"))); + me.TR(me); + me.TD(me, 1, me.columns, e = makeXonoticTextLabel(0.5, _("Player statistics are enabled by default, you can change this in the Profile menu"))); // because of the language selector, this is a menu_restart! me.gotoRC(me, me.rows - 1, 0);