fixes some pulse demon issues (#24129)

* fixes some pulse demon issues

* Update code/game/gamemodes/miniantags/pulsedemon/pulsedemon.dm

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>

---------

Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
GDN
2024-02-16 19:15:56 -06:00
committed by GitHub
parent 2f8b49a763
commit 28b79dc91c
2 changed files with 9 additions and 7 deletions
@@ -377,9 +377,9 @@
return TRUE
/mob/living/simple_animal/proc/drop_loot()
if(loot.len)
for(var/i in loot)
new i(loc)
if(length(loot))
for(var/item in loot)
new item(get_turf(src))
/mob/living/simple_animal/revive()
..()