Returns old alien weeds (#4075)

This update returns the alien weeds to their old behavior, instead of just being regular vines that turns any alien round into a giant clusterfuck. Also fixes alien acid being unable to melt the floor.
This commit is contained in:
Alberyk
2018-01-16 15:14:59 +02:00
committed by Erki
parent cc94a2417c
commit a367240477
6 changed files with 120 additions and 20 deletions
+5
View File
@@ -35,6 +35,11 @@
if(istype(target, /turf/simulated/wall)) // I hate turf code.
var/turf/simulated/wall/W = target
W.dismantle_wall(1)
if(istype(target, /turf/simulated/floor))
var/turf/simulated/floor/F = target
F.ChangeTurf(F.baseturf)
else
qdel(target)
qdel(src)