mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-08 07:08:30 +00:00
* Initial * some more * next few * only light left * fix things up * some rmore fixes * guh * Update ai_vr.dm * comment * lets try something * . * hmm * . * . * hmm * push that here * fix layout * grrr
21 lines
518 B
Plaintext
21 lines
518 B
Plaintext
/obj/structure/window/Initialize(mapload, start_dir=null, constructed=0)
|
|
. = ..()
|
|
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/Move()
|
|
var/oldloc = loc
|
|
. = ..()
|
|
if(loc != oldloc)
|
|
for(var/obj/structure/table/T in view(oldloc, 1) | view(loc, 1))
|
|
T.update_connections()
|
|
T.update_icon()
|