Skip to content

Commit

Permalink
ty interception
Browse files Browse the repository at this point in the history
Co-authored-by: Interception&?. <[email protected]>
  • Loading branch information
Filatelele and intercepti0n authored Dec 9, 2023
1 parent afb7319 commit 90ce9d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/spells/artifacts/plague_bell.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
var/damage_delivered = 0 //The necromancer will be healed by a percentage of the total damage delivered this tick.

for(var/atom/A in hearers(6, get_turf(loc))) // Here we will actually damage mobs in range
var/mob/living/M = null
if(A == master)
continue

if(isliving(A))
M = A

var/mob/living/M = A
if(!istype(M))
continue
else if(istype(A,/obj/mecha))
var/obj/mecha/mecha = A
if(!mecha.occupant)
Expand Down

0 comments on commit 90ce9d3

Please sign in to comment.