From ae39a084c48bbe8f01ab8dba6cc301add006cc05 Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Sat, 10 May 2025 21:48:36 -0400 Subject: [PATCH] Updates bruh moments to be more up to date (#91080) ## About The Pull Request Someone's gotta maintain it. ## Why It's Good For The Game ## Changelog :cl: spellcheck: Updated bruh moments. /:cl: --- code/game/objects/items/grenades/smokebomb.dm | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/grenades/smokebomb.dm b/code/game/objects/items/grenades/smokebomb.dm index 1c64a349d00..371df2167c1 100644 --- a/code/game/objects/items/grenades/smokebomb.dm +++ b/code/game/objects/items/grenades/smokebomb.dm @@ -10,8 +10,25 @@ icon_state = "smokewhite" inhand_icon_state = "smoke" slot_flags = ITEM_SLOT_BELT - ///It's extremely important to keep this list up to date. It helps to generate the insightful description of the smokebomb - var/static/list/bruh_moment = list("Dank", "Hip", "Lit", "Based", "Robust", "Bruh", "Gamer") + ///List of words we take randomly every time we're examined. It's extremely important to keep this list up to date, + ///It helps to generate the insightful description of the smokebomb + var/static/list/bruh_moment = list( + "Dank", + "Hip", + "Lit", + "Based", + "Robust", + "Bruh", + "Gamer", + "Sigma", + "Blud", + "Fanum", + "Gyatt", + "Looksmaxxing", + "Mewing", + "Aura", + "Crashout", + ) ///Here we generate the extremely insightful description. /obj/item/grenade/smokebomb/Initialize(mapload)