Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] [No GBP] Fixes of the Special Bitrunning Vending Machine #5228

Merged
merged 2 commits into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion modular_nova/modules/bitrunning/code/disks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@

allowed_areas = list(
/area/virtual_domain,
/area/space/virtual_domain,
/area/ruin/space/virtual_domain,
/area/icemoon/underground/explored/virtual_domain,
/area/lavaland/surface/outdoors/virtual_domain,
)

selectable_atoms = list(
Expand All @@ -100,8 +104,10 @@
area_string = "virtual domains"
supply_pod_stay = FALSE

/obj/machinery/vending/dorms/bitrunning
/obj/machinery/vending/dorms/bitrunning/Initialize(mapload)
. = ..()
all_products_free = TRUE
onstation = FALSE

/datum/orderable_item/bitrunning_tech/item_tierlewd
cost_per_order = 250
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
/area/centcom/interlink/dorm_rooms,
/area/centcom/holding/cafedorms,
/area/misc/hilbertshotel,
/area/virtual_domain,
/area/space/virtual_domain,
/area/ruin/space/virtual_domain,
/area/icemoon/underground/explored/virtual_domain,
/area/lavaland/surface/outdoors/virtual_domain,
)

/obj/item/clothing/neck/size_collar/attack_self(mob/user, modifiers)
Expand Down
Loading