Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasint committed Sep 29, 2024
1 parent 00c312b commit 92018c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/modules/surgery/organs/lungs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@
breather.failed_last_breath = TRUE
lung_pop_tick++
// Robot, don't care lol
else if(!HAS_TRAIT(owner, TRAIT_ASSISTED_BREATHING))
else if((owner && !HAS_TRAIT(owner, TRAIT_ASSISTED_BREATHING)))
// Can't breathe!
breather.failed_last_breath = TRUE

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
)

/datum/status_effect/limp/pain/update_limp()
if(QDELING(owner))
if(QDELETED(owner))
return
var/mob/living/carbon/human/limping_human = owner

Expand Down
2 changes: 1 addition & 1 deletion monkestation/code/modules/the_fabled_dna_changes/dna.dm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
for(var/datum/color_palette/palette as anything in generic_colors)
color_palettes += palette
var/datum/color_palette/new_palette = new palette
if(holder.client?.prefs)
if(holder?.client?.prefs)
new_palette.apply_prefs(holder.client.prefs)
color_palettes[palette] = new_palette

Expand Down

0 comments on commit 92018c3

Please sign in to comment.