From 55adce2fb11b3c17febcd9dc4284b6c68331c97a Mon Sep 17 00:00:00 2001 From: Mark van Alphen Date: Sun, 31 Mar 2019 22:09:09 +0200 Subject: [PATCH] Fix code review issues --- code/__HELPERS/icons.dm | 8 ++++---- code/modules/shuttle/shuttle.dm | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm index db3b3833d05..dad2ecd7630 100644 --- a/code/__HELPERS/icons.dm +++ b/code/__HELPERS/icons.dm @@ -732,10 +732,10 @@ The _flatIcons list is a cache for generated icon files. var/icon/add // Icon of overlay being added // Current dimensions of flattened icon - var/flatX1=1 - var/flatX2=flat.Width() - var/flatY1=1 - var/flatY2=flat.Height() + var/flatX1 = 1 + var/flatX2 = flat.Width() + var/flatY1 = 1 + var/flatY2 = flat.Height() // Dimensions of overlay being added var/addX1 var/addX2 diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 2983d6bf7d5..3d3ae7e1c84 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -715,7 +715,7 @@ shuttleId = C.shuttleId /obj/machinery/computer/shuttle/Initialize() - ..() + . = ..() connect() /obj/machinery/computer/shuttle/proc/connect()