mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +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)
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Alberyk
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- tweak: "The Lazarus injector can no longer revive mobs that are not tameable."
|
||||
Reference in New Issue
Block a user