mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2025-12-10 18:35:21 +00:00
19 lines
459 B
Plaintext
19 lines
459 B
Plaintext
/obj/structure/window/Initialize(mapload)
|
|
. = ..()
|
|
for(var/obj/structure/table/T in view(src, 1))
|
|
T.update_connections()
|
|
T.update_icon()
|
|
|
|
/obj/structure/window/Destroy()
|
|
var/oldloc = loc
|
|
. = ..()
|
|
for(var/obj/structure/table/T in view(oldloc, 1))
|
|
T.update_connections()
|
|
T.update_icon()
|
|
|
|
/obj/structure/window/Moved(atom/oldloc)
|
|
. = ..()
|
|
for(var/obj/structure/table/T in view(oldloc, 1) | view(loc, 1))
|
|
T.update_connections()
|
|
T.update_icon()
|