The lazarus injector can no longer revive mobs that are not tameable. (#16082)

This commit is contained in:
Alberyk
2023-03-26 20:18:38 -03:00
committed by GitHub
parent 7d37e49016
commit 021ecad814
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -825,7 +825,7 @@
if(isliving(target) && proximity_flag)
if(istype(target, /mob/living/simple_animal))
var/mob/living/simple_animal/M = target
if(!(M.find_type() & revive_type))
if(!(M.find_type() & revive_type) || !(M.tameable))
to_chat(user, SPAN_INFO("\The [src] does not work on this sort of creature."))
return
if(M.stat == DEAD)