Adds floor lamp, benches, new tank sprites, and cup dispenser on water coolers.

This commit is contained in:
SinTwo
2016-06-19 22:28:01 -04:00
parent fe7c079747
commit 86e500d25c
12 changed files with 547 additions and 16 deletions

View File

@@ -3,6 +3,9 @@
for(var/obj/structure/table/T in view(src, 1))
T.update_connections()
T.update_icon()
for(var/obj/structure/bench/T in view(src, 1))
T.update_connections()
T.update_icon()
/obj/structure/window/Destroy()
var/oldloc = loc
@@ -10,6 +13,9 @@
for(var/obj/structure/table/T in view(oldloc, 1))
T.update_connections()
T.update_icon()
for(var/obj/structure/bench/T in view(oldloc, 1))
T.update_connections()
T.update_icon()
loc=oldloc
..()
@@ -18,5 +24,8 @@
. = ..()
if(loc != oldloc)
for(var/obj/structure/table/T in view(oldloc, 1) | view(loc, 1))
T.update_connections()
T.update_icon()
for(var/obj/structure/bench/T in view(oldloc, 1) | view(loc, 1))
T.update_connections()
T.update_icon()