Optimize a couple things

This commit is contained in:
Chompstation Bot
2021-07-20 21:30:20 +00:00
parent 4a6c523aa6
commit 15cafbe65b
262 changed files with 9437 additions and 934 deletions

View File

@@ -21,8 +21,7 @@
screenobjs += new /obj/screen/rig/deco1_f
screenobjs += new /obj/screen/rig/deco2_f
for(var/scr in screenobjs)
var/obj/screen/S = scr
for(var/obj/screen/S as anything in screenobjs)
S.master = owner_rig
..()
@@ -71,8 +70,7 @@
screenobjs += new /obj/screen/mech/deco1_f
screenobjs += new /obj/screen/mech/deco2_f
for(var/scr in screenobjs)
var/obj/screen/S = scr
for(var/obj/screen/S as anything in screenobjs)
S.master = owner_mech
..()