Kinetic gun can now break through mining tiles due to the goliath being able to possibly trap you in an unwinnable situation otherwise

More mob behavior vars in hostile animal, added Passtable to hivelord and brood and removed their environment smash

Conflicts:
	code/modules/mob/living/simple_animal/hostile/hostile.dm
This commit is contained in:
Ergovisavi
2014-01-23 10:22:07 -05:00
committed by ZomgPonies
parent 5dc5c451a5
commit 89c23fc494
3 changed files with 28 additions and 17 deletions
@@ -180,6 +180,9 @@ obj/item/projectile/kinetic/New()
/obj/item/projectile/kinetic/on_hit(var/atom/target)
var/turf/target_turf= get_turf(target)
if(istype(target_turf, /turf/simulated/mineral))
var/turf/simulated/mineral/M = target_turf
M.gets_drilled()
new /obj/item/effect/kinetic_blast(target_turf)
..()