Changes the price of crates from the elevator (#21313)

Crates currently cost 100 plus the actual order when ordering items, so
before this change it would be +400 credits for free when ordering
anything, minus the cost of the actual order. This fixes that.
This commit is contained in:
Casper3667
2025-09-15 12:06:58 +00:00
committed by GitHub
parent c2ba07be97
commit 04ceb22b77
3 changed files with 10 additions and 4 deletions
+2 -2
View File
@@ -24,10 +24,10 @@ SUBSYSTEM_DEF(cargo)
var/list/all_orders = list() // All orders.
// Fee Variables
var/credits_per_crate = 100 // "Cost / Payment" per crate shipped from or to centcomm.
var/credits_per_crate = 30 // "Cost / Payment" per crate shipped from or to centcomm.
var/credits_per_platinum = 140 // Per sheet.
var/credits_per_phoron = 100 // Per sheet.
var/cargo_handlingfee = 50 // The handling fee cargo takes per crate.
var/cargo_handlingfee = 20 // The handling fee cargo takes per crate.
var/cargo_handlingfee_min = 0 // The minimum handling fee.
var/cargo_handlingfee_max = 500 // The maximum handling fee.
var/cargo_handlingfee_change = 1 // If the handling fee can be changed -> for a random event.