Skip to content

Commit

Permalink
removes null assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdtalon committed Nov 10, 2023
1 parent 88149c6 commit bc9a5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if(user.sdisabilities & DISABILITY_BLIND || user.blinded || user.stat==UNCONSCIOUS)
return list(SPAN_NOTICE("Something is there but you can't see it."))

var/mob/dead/observer/observer = null
var/mob/dead/observer/observer
if(isobserver(user))
observer = user

Expand Down

0 comments on commit bc9a5a7

Please sign in to comment.