From: Samual Lenks Date: Sun, 2 Feb 2014 00:48:47 +0000 (-0500) Subject: Also remove some other unnecessary things X-Git-Tag: xonotic-v0.8.0~139^2~1^2~11 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=4974fcef88468abe14f3112a73c5091a148dd4e0;p=xonotic%2Fxonotic-data.pk3dir.git Also remove some other unnecessary things --- diff --git a/qcsrc/menu/xonotic/dialog_settings_game_messages.c b/qcsrc/menu/xonotic/dialog_settings_game_messages.c index b0e01d19f..c0dbb1f82 100644 --- a/qcsrc/menu/xonotic/dialog_settings_game_messages.c +++ b/qcsrc/menu/xonotic/dialog_settings_game_messages.c @@ -29,22 +29,6 @@ void XonoticGameMessageSettingsTab_fill(entity me) { entity e; - // todo: - // notification_CHOICE_CTF_CAPTURE_* CTF capture record - // notification_CHOICE_CTF_PICKUP_* CTF pickup verbose info - // notification_FRAG* Frag message verbose info - // notification_show_location Show location of deaths in death messages - // notification_show_sprees Show spree information - // notification_INFO_ITEM_WEAPON* Show weapon notifications in console - // Enable con_notify - // notification_ANNCE_NUM_RESPAWN* Add respawning countdown slider - // notification_ANNCE_NUM_ROUNDSTART* Add roundstart countdown slider - // notification_ANNCE_NUM_KILL* Add kill countdown slider - // notification_ANNCE_NUM_GAMESTART* Add gamestart countdown slider - // notification_ANNCE_ACHIEVEMENT* achievements toggle - // notification_ANNCE_KILLSTREAK* killstreak toggles - - /// frag information me.TR(me); me.TD(me, 1, 3, e = makeXonoticTextLabel(0.5, _("Frag Information"))); e.isBold = TRUE; @@ -88,7 +72,7 @@ void XonoticGameMessageSettingsTab_fill(entity me) me.TR(me); me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_show_location", _("Add frag location to death messages when available"))); - me.gotoRC(me, 8.5, 0); me.setFirstColumn(me, me.currentColumn); + me.gotoRC(me, 9, 0); me.setFirstColumn(me, me.currentColumn); me.TD(me, 1, 3, e = makeXonoticTextLabel(0.5, _("Gamemode Settings"))); e.isBold = TRUE; e.alpha = 0.5; @@ -123,7 +107,7 @@ void XonoticGameMessageSettingsTab_fill(entity me) me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_INFO_ITEM_WEAPON_DONTHAVE", _("Weapon info message notifications"))); makeMulti(e, "notification_INFO_ITEM_WEAPON_DROP notification_INFO_ITEM_WEAPON_GOT notification_INFO_ITEM_WEAPON_NOAMMO notification_INFO_ITEM_WEAPON_PRIMORSEC notification_INFO_ITEM_WEAPON_UNAVAILABLE"); - me.gotoRC(me, 8.5, 3.2); me.setFirstColumn(me, me.currentColumn); + me.gotoRC(me, 9, 3.2); me.setFirstColumn(me, me.currentColumn); me.TD(me, 1, 3, e = makeXonoticTextLabel(0.5, _("Announcers"))); e.isBold = TRUE; e.alpha = 0.5; @@ -139,8 +123,5 @@ void XonoticGameMessageSettingsTab_fill(entity me) me.TR(me); me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(1, 0, "notification_ANNCE_ACHIEVEMENT_AIRSHOT", _("Achievement sounds"))); makeMulti(e, "notification_ANNCE_ACHIEVEMENT_AMAZING notification_ANNCE_ACHIEVEMENT_AWESOME notification_ANNCE_ACHIEVEMENT_BOTLIKE notification_ANNCE_ACHIEVEMENT_ELECTROBITCH notification_ANNCE_ACHIEVEMENT_IMPRESSIVE notification_ANNCE_ACHIEVEMENT_YODA"); - - me.gotoRC(me, me.rows - 1, 0); - me.TD(me, 1, me.columns, makeXonoticCommandButton(_("Apply immediately"), '0 0 0', "echo stuff", COMMANDBUTTON_APPLY)); } #endif