Skip to content

Commit

Permalink
Makes xenos not runtime on pierrots/wizarditis (ParadiseSS13#25397)
Browse files Browse the repository at this point in the history
  • Loading branch information
DGamerL authored May 6, 2024
1 parent 0b04611 commit 02cb931
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/datums/diseases/pierrot_throat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
// Semi-permanent clown mask while in last stage of infection
if(locate(/obj/item/clothing/mask/gas/clown_hat) in H)
return
if(!istype(H)) // Xenos don't have masks. They can still feel silly though
return

if(!H.has_organ_for_slot(SLOT_HUD_WEAR_MASK) || !H.canUnEquip(H.get_item_by_slot(SLOT_HUD_WEAR_MASK)))
return

Expand Down
2 changes: 2 additions & 0 deletions code/datums/diseases/wizarditis.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@

/datum/disease/wizarditis/proc/spawn_wizard_clothes()
var/mob/living/carbon/human/H = affected_mob
if(!istype(H))
return // Woe, wizard xeno upon ye

// Which slots can we replace?
var/list/eligible_slot_IDs = new
Expand Down

0 comments on commit 02cb931

Please sign in to comment.