mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-23 13:05:44 +01:00
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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user