From 5a6727438bcbf65d32fb4eabdd75e2e75bc0bcc0 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 8 Mar 2023 12:40:12 +0100 Subject: [PATCH] [MIRROR] Fixes russian fugitive hunter to_chats, adds missing one for bounty hunters [MDB IGNORE] (#19722) * Fixes russian fugitive hunter to_chats, adds missing one for bounty hunters (#73826) ## About The Pull Request Upon taking a fugitive spawner, you were SUPPOSED to receive a quick lore blurb to help get you into character, or something. This only worked for the spacepol hunters, however, as the to_chat's for the Russian spawner would send to the user's antag datum rather than their chat, and the bounty hunters were missing theirs entirely. ## Why It's Good For The Game Reading and text is really good for your eyes and brain. ## Changelog :cl: Rhials spellcheck: Fixes the Russian/Bounty Hunter fugitive hunter spawn backstory messages. /:cl: * Fixes russian fugitive hunter to_chats, adds missing one for bounty hunters --------- Co-authored-by: Rhials --- code/modules/antagonists/fugitive/hunter.dm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/code/modules/antagonists/fugitive/hunter.dm b/code/modules/antagonists/fugitive/hunter.dm index 1d267b90624..343b6ca63e3 100644 --- a/code/modules/antagonists/fugitive/hunter.dm +++ b/code/modules/antagonists/fugitive/hunter.dm @@ -28,10 +28,14 @@ to_chat(owner, "The criminals should be on the station, we have special huds implanted to recognize them.") to_chat(owner, "As we have lost pretty much all power over these damned lawless megacorporations, it's a mystery if their security will cooperate with us.") if("russian") - to_chat(src, span_danger("Ay blyat. I am a space-russian smuggler! We were mid-flight when our cargo was beamed off our ship!")) - to_chat(src, span_danger("We were hailed by a man in a green uniform, promising the safe return of our goods in exchange for a favor:")) - to_chat(src, span_danger("There is a local station housing fugitives that the man is after, he wants them returned; dead or alive.")) - to_chat(src, span_danger("We will not be able to make ends meet without our cargo, so we must do as he says and capture them.")) + to_chat(owner, span_danger("Ay blyat. I am a space-russian smuggler! We were mid-flight when our cargo was beamed off our ship!")) + to_chat(owner, span_danger("We were hailed by a man in a green uniform, promising the safe return of our goods in exchange for a favor:")) + to_chat(owner, span_danger("There is a local station housing fugitives that the man is after, he wants them returned; dead or alive.")) + to_chat(owner, span_danger("We will not be able to make ends meet without our cargo, so we must do as he says and capture them.")) + if("bounty hunters") + to_chat(owner, span_danger("Time to clock in. I am a bounty hunter! We should be arriving at our mark's hideout shortly.")) + to_chat(owner, span_danger("The briefing mentioned our destination was a research station. An unusual place for a target to try and lay low.")) + to_chat(owner, span_danger("Our client promised us big bucks, and we intend to make good on our delivery. Let's hope this is an easy paycheck...")) to_chat(owner, span_boldannounce("You are not an antagonist in that you may kill whomever you please, but you can do anything to ensure the capture of the fugitives, even if that means going through the station.")) owner.announce_objectives()