From 78174fcc0677d038885cd4febc8df90cb7fa00e9 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Sun, 27 Oct 2019 16:16:02 -0700 Subject: [PATCH] Update shuttle.dm --- code/controllers/subsystem/shuttle.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 09d5a443af..382bf25b98 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -38,7 +38,6 @@ SUBSYSTEM_DEF(shuttle) var/centcom_message = "" //Remarks from CentCom on how well you checked the last order. var/list/discoveredPlants = list() //Typepaths for unusual plants we've already sent CentCom, associated with their potencies var/passive_supply_points_per_minute = 750 - var/last_fire = 0 var/list/supply_packs = list() var/list/shoppinglist = list() @@ -117,7 +116,6 @@ SUBSYSTEM_DEF(shuttle) var/fire_time_diff = max(0, world.time - last_fire) //Don't want this to be below 0, seriously. var/point_gain = (fire_time_diff / 600) * passive_supply_points_per_minute points += point_gain - last_fire = world.time //Cargo stuff end if(!SSmapping.clearing_reserved_turfs)