Files
LT3andGitHub 6c5fa75ecd One-Way Materials Market (#5137)
## About The Pull Request

Re-enables purchase of the GMM, however the GMM can only be used to
purchase materials not sell them.

## Why It's Good For The Game

Let the station buy materials if they're desperate/lowpop. If people
were selling insane amounts of material inflating the budget, just
remove the ability to sell. Don't remove the entire machine.

## Changelog

🆑 LT3
add: Galactic materials market can be used by cargo for purchasing
materials only
/🆑
2026-01-24 14:37:51 -08:00

24 lines
745 B
Plaintext

/obj/item/flatpack/export_gate
name = "bounty cube export gate"
board = /obj/item/circuitboard/machine/export_gate
custom_premium_price = PAYCHECK_CREW * 1.5
/obj/item/flatpack/export_gate/Initialize(mapload)
. = ..()
var/turf/our_turf = get_turf(src)
new /obj/item/paper/fluff/export_gate(our_turf)
/obj/item/flatpack/export_gate/multitool_act(mob/living/user, obj/item/tool)
if(isturf(loc))
var/turf/location = loc
if(!locate(/obj/machinery/conveyor) in location)
balloon_alert(user, "needs conveyor belt!")
return ITEM_INTERACT_BLOCKING
return ..()
/obj/item/flatpack/materials_market
name = "materials import market"
board = /obj/item/circuitboard/machine/materials_market
custom_premium_price = PAYCHECK_CREW * 1.5