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
@@ -1,5 +1,5 @@
/datum/export/large/crate
cost = 500
cost = 15
k_elasticity = 0
unit_name = "crate"
export_types = list(/obj/structure/closet/crate)
@@ -11,7 +11,7 @@
. += " Thanks for participating in NanoTrasen Crates Recycling Program."
/datum/export/large/crate/wooden
cost = 100
cost = 25
unit_name = "large wooden crate"
export_types = list(/obj/structure/closet/crate/large)
exclude_types = list()