From fdffb4aa0f063edbe70fd780d0a0333468778ac4 Mon Sep 17 00:00:00 2001 From: Rhials <28870487+Rhials@users.noreply.github.com> Date: Wed, 14 Aug 2024 07:22:56 -0400 Subject: [PATCH] Fixes the missing voidwalker glass eater objective message (#85494) ## About The Pull Request This makes the "Man I fucking love glass." voidwalker meme objective line actually show up now. Rather than being appended to the end of your objective, it can roll as its own objective line at a 5% chance. ## Why It's Good For The Game It's funny, and wasn't meant to be inaccessible in the first place. ## Changelog :cl: Rhials grammar: The "man I love glass" voidwalker message can show up in your objectives now. /:cl: --- code/modules/antagonists/voidwalker/voidwalker.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/voidwalker/voidwalker.dm b/code/modules/antagonists/voidwalker/voidwalker.dm index 6ba5ee4490d..6222dc0c35f 100644 --- a/code/modules/antagonists/voidwalker/voidwalker.dm +++ b/code/modules/antagonists/voidwalker/voidwalker.dm @@ -50,9 +50,10 @@ "They must see what you have seen. They must walk where you have walked. Bring them to the void and show them the truth. The dead cannot know what you know.", "Recover what you have lost. Bring your children into the inky black and return them to your flock.", ) - if(prob(20)) - explanation_text += "Man I fucking love glass." explanation_text = pick(explanation_texts) + + if(prob(5)) + explanation_text = "Man I fucking love glass." ..() /datum/objective/voidwalker_objective/check_completion()