diff --git a/code/modules/shuttle/special.dm b/code/modules/shuttle/special.dm index d039929d2fc..8ae50b98558 100644 --- a/code/modules/shuttle/special.dm +++ b/code/modules/shuttle/special.dm @@ -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)