Skip to content

Commit

Permalink
Fixes skin tones for syndibase spawner (#27299)
Browse files Browse the repository at this point in the history
* woeuponspawners

* begone blank space

* Update code/modules/ruins/syndicate_space_base.dm

Co-authored-by: Contrabang <[email protected]>
Signed-off-by: Bm0n <[email protected]>

---------

Signed-off-by: Bm0n <[email protected]>
Co-authored-by: Bmon <[email protected]>
Co-authored-by: Contrabang <[email protected]>
  • Loading branch information
3 people authored Nov 29, 2024
1 parent d8e349d commit 0b3f777
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion code/modules/ruins/syndicate_space_base.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
assignedrole = "Syndicate Researcher"
del_types = list() // Necessary to prevent del_types from removing radio!
allow_species_pick = TRUE
skin_tone = 255
skin_tone = 2

/obj/effect/mob_spawn/human/alive/spacebase_syndicate/Destroy()
var/obj/structure/fluff/empty_sleeper/syndicate/S = new /obj/structure/fluff/empty_sleeper/syndicate(get_turf(src))
Expand Down Expand Up @@ -67,3 +67,10 @@
var/random_name = random_name(pick(MALE,FEMALE), H.dna.species.name)
H.rename_character(H.real_name, random_name)
H.job = "Syndi Researcher" // ensures they show up right in player panel for admins
if(isunathi(H) || isvulpkanin(H) || istajaran(H) || isskrell(H))
H.change_skin_color("#B2B2B2")
if(ismoth(H))
H.change_markings("White Fly Head Markings", "head")
H.change_markings("White Fly Markings", "body")
H.change_head_accessory("White Fly Antennae")
H.change_body_accessory("White Fly Wings")

0 comments on commit 0b3f777

Please sign in to comment.