Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes underwear from lizards and all underclothes from ashwalkers #1146

Merged
merged 5 commits into from
Feb 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/_species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ GLOBAL_LIST_EMPTY(features_by_species)

//Underwear, Undershirts & Socks
if(!(NO_UNDERWEAR in species_traits))
if(species_human.underwear)
if(species_human.underwear && !(src.bodytype & BODYTYPE_DIGITIGRADE)) //MONKESTATION EDIT
var/datum/sprite_accessory/underwear/underwear = GLOB.underwear_list[species_human.underwear]
var/mutable_appearance/underwear_overlay
if(underwear)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,14 @@ Lizard subspecies: ASHWALKERS
MUTCOLORS_SECONDARY,
EYECOLOR,
LIPS,
NO_UNDERWEAR, //MONKESTATION ADDITION: no more flesh clothes lol
)
inherent_traits = list(
//TRAIT_LITERATE,
TRAIT_VIRUSIMMUNE,
)
species_language_holder = /datum/language_holder/lizard/ash
digitigrade_customization = DIGITIGRADE_FORCED
/*digitigrade_customization = DIGITIGRADE_FORCED*/ //MONKESTATION REMOVAL: not needed
examine_limb_id = SPECIES_LIZARD
bodypart_overrides = list(
BODY_ZONE_HEAD = /obj/item/bodypart/head/lizard,
Expand Down
Loading