Signed-off-by: Mloc <colmohici@gmail.com>
This commit is contained in:
Mloc
2013-10-16 11:21:51 +01:00
parent e6c145d6f8
commit 90378111e1
2 changed files with 21 additions and 23 deletions

View File

@@ -7,7 +7,7 @@
flag = "energy"
/obj/item/projectile/animate/Bump(var/atom/change)
. = ..()
if(istype(change, /obj/item) || istype(change, /obj/structure) && !is_type_in_list(change, protected_objects))
if((istype(change, /obj/item) || istype(change, /obj/structure)) && !is_type_in_list(change, protected_objects))
var/obj/O = change
new /mob/living/simple_animal/hostile/mimic/copy(O.loc, O, firer)
..()