From 5b9969416e2f09408384e0eb1333a143a5e6f53c Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Thu, 3 Apr 2025 06:22:52 -0700 Subject: [PATCH] [MIRROR] protean bugfix (#10579) Co-authored-by: Cameron Lennox --- code/__defines/rust_g.dm | 2 +- .../carbon/human/species/station/protean/protean_species.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__defines/rust_g.dm b/code/__defines/rust_g.dm index 043c7c1336..f332db1551 100644 --- a/code/__defines/rust_g.dm +++ b/code/__defines/rust_g.dm @@ -200,7 +200,7 @@ /// All icons have the same y coordinate, and their x coordinate is equal to `icon_width * position`. /// /// hash_icons is a boolean (0 or 1), and determines if the generator will spend time creating hashes for the output field dmi_hashes. -/// These hashes can be heplful for 'smart' caching (see rustg_iconforge_cache_valid), but require extra computation. +/// These hashes can be helpful for 'smart' caching (see rustg_iconforge_cache_valid), but require extra computation. /// /// Spritesheet will contain all sprites listed within "sprites". /// "sprites" format: diff --git a/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm b/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm index 3bb3925d52..9506b2172b 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm @@ -172,7 +172,7 @@ return S.get_icobase(H, get_deform) /datum/species/protean/get_valid_shapeshifter_forms(var/mob/living/carbon/human/H) - var/static/list/protean_shapeshifting_forms = GLOB.playable_species.Copy() - SPECIES_PROMETHEAN + var/list/protean_shapeshifting_forms = GLOB.playable_species.Copy() - SPECIES_PROMETHEAN //Removing the 'static' here fixes it returning an empty list. I do not know WHY that is the case, but it is for some reason. This needs to be investigated further, but this fixes the issue at the moment. return protean_shapeshifting_forms /datum/species/protean/get_tail(var/mob/living/carbon/human/H)