Skip to content

Commit

Permalink
probably actually "fixes" the ci fail in the worst way possible
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxilmaniac committed Nov 29, 2024
1 parent da669fc commit c92815f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions code/datums/bodypart_overlays/mutant_bodypart_overlay.dm
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
var/feature_name = receiver.dna.features[feature_key]
if (isnull(feature_name))
feature_name = receiver.dna.species.mutant_organs[parent.type]
if(isnull(feature_name)) // DOPPLER EDIT - HII EPHE DO YOU HATE THIS YET?
feature_name = "No Tail" // DOPPLER EDIT - HII EPHE DO YOU HATE THIS YET?
set_appearance_from_name(feature_name)
imprint_on_next_insertion = FALSE

Expand Down
20 changes: 10 additions & 10 deletions modular_doppler/modular_customization/organs/external/tail.dm
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/obj/item/organ/tail/mouse
name = "mouse tail"
preference = "feature_mouse_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/mouse

Expand All @@ -55,7 +55,7 @@
// Buffs people if they're closeby while you're wagging it!
/obj/item/organ/tail/dog
preference = "feature_dog_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/dog
/// monitor used for the moodbuff
Expand Down Expand Up @@ -95,7 +95,7 @@
//
/obj/item/organ/tail/fox
preference = "feature_fox_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/fox

Expand All @@ -109,7 +109,7 @@
//
/obj/item/organ/tail/bunny
preference = "feature_bunny_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/bunny

Expand All @@ -123,7 +123,7 @@
//
/obj/item/organ/tail/bird
preference = "feature_bird_tail"
//dna_block = null
dna_block = null
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/bird

/datum/bodypart_overlay/mutant/tail/bird
Expand All @@ -136,7 +136,7 @@
//
/obj/item/organ/tail/bug
preference = "feature_bug_tail"
//dna_block = null
dna_block = null
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/bug

/datum/bodypart_overlay/mutant/tail/bug
Expand All @@ -149,7 +149,7 @@
//
/obj/item/organ/tail/deer
preference = "feature_deer_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/deer

Expand All @@ -169,7 +169,7 @@
//
/obj/item/organ/tail/cybernetic
preference = "feature_synth_tail"
//dna_block = null
dna_block = null
organ_flags = ORGAN_ROBOTIC
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/cybernetic

Expand All @@ -184,7 +184,7 @@
//
/obj/item/organ/tail/humanoid
preference = "feature_humanoid_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/humanoid

Expand All @@ -199,7 +199,7 @@
//
/obj/item/organ/tail/alien
preference = "feature_alien_tail"
//dna_block = null
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/alien

Expand Down

0 comments on commit c92815f

Please sign in to comment.