fixes fuckup in expressconsole preventing packs being ordered when credits are low (#37239)

* - Introduces a non-linear component to liver damage from alcohol so weak alcohol doesn't kill you instantly. (#36089)

* fixes my errors
This commit is contained in:
MrDoomBringer
2018-04-16 20:13:43 -04:00
committed by CitadelStationBot
parent f98040513a
commit 846aa734e8
+1 -1
View File
@@ -111,7 +111,7 @@
var/area/landingzone
var/datum/supply_order/SO = new(pack, name, rank, ckey, reason)
if(!(obj_flags & EMAGGED))
if(SO.pack.cost * 2 <= SSshuttle.points)
if(SO.pack.cost <= SSshuttle.points)
landingzone = locate(/area/quartermaster/storage) in GLOB.sortedAreas
for(var/turf/open/floor/T in landingzone.contents)
if(is_blocked_turf(T))