mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 08:08:49 +01:00
## 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 /🆑
24 lines
745 B
Plaintext
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
|