Updates the CCIA-recorder antag/ooc prompt message. (#13388)

This commit is contained in:
Werner
2022-03-18 14:41:21 +01:00
committed by GitHub
parent e434172a49
commit 78d1fa7215
2 changed files with 45 additions and 3 deletions
+4 -3
View File
@@ -290,11 +290,12 @@
send_link(usr, selected_report.public_topic)
//Ask them if there was antag involvement
var/a = input(user, "Were your actions influenced by antagonists?", "Antagonist involvement") in list("yes","no")
var/a = input(user, "Were your actions influenced by antagonists or OOC issues/concerns ?", "Antagonist involvement / OOC Issue") in list("yes","no")
if(a == "yes")
antag_involvement = TRUE
antag_involvement_text = sanitizeSafe(input("Describe how your actions were influenced by the antagonists.", "Antag involvement") as message|null)
message_cciaa("CCIA Interview: [user] claimed their actions were influenced by antagonists.", R_CCIAA)
antag_involvement_text = sanitizeSafe(input("Describe how your actions were influenced by the antagonists or OOC issues/concerns.", "Antag involvement / OOC Issue") as message|null)
message_cciaa("CCIA Interview: [user] claimed their actions were influenced by antagonists or OOC issues.", R_CCIAA)
message_cciaa("CCIA Interview: [antag_involvement_text]")
else
antag_involvement = FALSE