From ac1892f0339ed6543860fd9243902b153f52468b Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Wed, 25 Jun 2025 23:26:04 +0200 Subject: [PATCH] fixes regular wisdom cows using wisest cow phrases WITHOUT having each wisest cow have a unique phrase list :) --- .../mob/living/simple_animal/friendly/wisest_cow.dm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/GainStation13/code/modules/mob/living/simple_animal/friendly/wisest_cow.dm b/GainStation13/code/modules/mob/living/simple_animal/friendly/wisest_cow.dm index eaea0d2a01..a94720d91b 100644 --- a/GainStation13/code/modules/mob/living/simple_animal/friendly/wisest_cow.dm +++ b/GainStation13/code/modules/mob/living/simple_animal/friendly/wisest_cow.dm @@ -5,4 +5,12 @@ /mob/living/simple_animal/cow/wisdom/wisest/Initialize(mapload) . = ..() - speak.Add("Prefer pushing from pulling", "Prefer pulling from pushing", "Do not ask the administration on how to utilize the self-pleasuring device", "Unwrenching a pipe with high pressure, will send you flying beyond measure", "Remember to tailor your hardsuit", "Beware the long-eared menace", "IT'S FUCKING FUUUUSIIIIING!!", "The all-consuming dark mass shall consume your workplace shortly", "Clowns and Engineers don't mix, and yet they are one and the same", "You will be shot in the back by a dragon dressed in blue") \ No newline at end of file + // this does not rate the highest in IQ tests but it allows me to use 1 or 2 lists for an INFINITE NUMBER OF WISEST COWS + var/static/list/speak_list = list() + var/static/initialized = FALSE + if (initialized == FALSE) + speak_list = GLOB.wisdoms.Copy() + speak_list.Add("Prefer pushing from pulling", "Prefer pulling from pushing", "Do not ask the administration on how to utilize the self-pleasuring device", "Unwrenching a pipe with high pressure, will send you flying beyond measure", "Remember to tailor your hardsuit", "Beware the long-eared menace", "IT'S FUCKING FUUUUSIIIIING!!", "The all-consuming dark mass shall consume your workplace shortly", "Clowns and Engineers don't mix, and yet they are one and the same", "You will be shot in the back by a dragon dressed in blue") + initialized = TRUE + + speak = speak_list