Fix multiple bugs with catwalks.

* Fixes catwalks not having space underneath them
* Fixes not being able to build catwalks
* Catwalks destructible with screwdriver
* Catwalks autoupdate icons with neighbors

Conflicts:
	code/game/turfs/simulated/floor.dm
	code/game/turfs/simulated/floor_types.dm
	html/changelog.html
This commit is contained in:
Rob Nelson
2014-01-11 10:43:05 -08:00
committed by ZomgPonies
parent 1f6f153dab
commit 8a6ea1d5c9
5 changed files with 80 additions and 16 deletions
+1 -1
View File
@@ -51,7 +51,7 @@
/obj/structure/lattice/attackby(obj/item/C as obj, mob/user as mob)
if (istype(C, /obj/item/stack/tile/plasteel))
if (istype(C, /obj/item/stack/tile/plasteel) || istype(C, /obj/item/stack/rods))
var/turf/T = get_turf(src)
T.attackby(C, user) //BubbleWrap - hand this off to the underlying turf instead
return