mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 03:49:10 +01:00
The lazarus injector can no longer revive mobs that are not tameable. (#16082)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user