Update special.dm

This commit is contained in:
kevinz000
2017-04-01 17:24:06 -07:00
committed by GitHub
parent 0f703b00c9
commit 54ff347edf
+3 -3
View File
@@ -218,7 +218,7 @@
//Luxury Shuttle Blockers
/obj/effect/forcefield/luxury_shuttle
var/threshhold = 500
var/threshold = 500
var/static/list/approved_passengers = list()
/obj/effect/forcefield/luxury_shuttle/CanPass(atom/movable/mover, turf/target, height=0)
@@ -234,12 +234,12 @@
for(var/obj/item/weapon/coin/C in mover.GetAllContents())
total_cash += C.value
counted_money += C
if(total_cash >= threshhold)
if(total_cash >= threshold)
break
for(var/obj/item/stack/spacecash/S in mover.GetAllContents())
total_cash += S.value * S.amount
counted_money += S
if(total_cash >= threshhold)
if(total_cash >= threshold)
break
if(total_cash >= threshhold)