From df84a2329a33d2dd868408d8ac7f461b0fc6958e Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Tue, 4 Apr 2017 20:22:09 -0400 Subject: [PATCH] Renames V-ANTAG to Event --- code/modules/client/preference_setup/vore/06_vantag.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/client/preference_setup/vore/06_vantag.dm b/code/modules/client/preference_setup/vore/06_vantag.dm index 28859092af..65bc66a495 100644 --- a/code/modules/client/preference_setup/vore/06_vantag.dm +++ b/code/modules/client/preference_setup/vore/06_vantag.dm @@ -5,7 +5,7 @@ // Definition of the stuff for Sizing /datum/category_item/player_setup_item/vore/vantag - name = "VS Antag" + name = "VS Events" sort_order = 6 /datum/category_item/player_setup_item/vore/vantag/load_character(var/savefile/S) @@ -27,8 +27,8 @@ /datum/category_item/player_setup_item/vore/vantag/content(var/mob/user) . += "
" - . += "V-Antag Volunteer: [pref.vantag_volunteer ? "Yes" : "No"]
" - . += "V-Antag Pref: [vantag_choices_list[pref.vantag_preference]]
" + . += "Event Volunteer: [pref.vantag_volunteer ? "Yes" : "No"]
" + . += "Event Pref: [vantag_choices_list[pref.vantag_preference]]
" /datum/category_item/player_setup_item/vore/vantag/OnTopic(var/href, var/list/href_list, var/mob/user) if(href_list["toggle_vantag_volunteer"]) @@ -40,7 +40,7 @@ for(var/C in vantag_choices_list) names_list[vantag_choices_list[C]] = C - var/selection = input(user, "How do you want to be involved with VS antags? They will see this choice on you in a HUD. VS antags are admin-selected and spawned players who are obligated to respect ERP prefs and RP their actions like any other player, though it may be a slightly shorter RP if they are pressed for time or being caught.", "V-Antag Preference") as null|anything in names_list + var/selection = input(user, "How do you want to be involved with VS Event Characters, ERP-wise? They will see this choice on you in a HUD. Event characters are admin-selected and spawned players, possibly with assigned objectives, who are obligated to respect ERP prefs and RP their actions like any other player, though it may be a slightly shorter RP if they are pressed for time or being caught.", "Event Preference") as null|anything in names_list if(selection && selection != "Normal") pref.vantag_preference = names_list[selection]