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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

var/hacked now actually does something in vendor spawners #56144

Merged
merged 1 commit into from Jan 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions code/game/objects/effects/spawners/vending.dm
Expand Up @@ -11,7 +11,7 @@

var/random_vendor = pick(subtypesof(/obj/machinery/vending/snack))
var/obj/machinery/vending/snack/vend = new random_vendor(loc)
vend.extended_inventory = TRUE
vend.extended_inventory = hacked

return INITIALIZE_HINT_QDEL

Expand All @@ -29,6 +29,6 @@

var/random_vendor = pick(subtypesof(/obj/machinery/vending/cola))
var/obj/machinery/vending/cola/vend = new random_vendor(loc)
vend.extended_inventory = TRUE
vend.extended_inventory = hacked

return INITIALIZE_HINT_QDEL