From 950574b307d64d0fd33b7f7d0d6883ddb2d9f6ad Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 31 Jan 2021 04:45:03 +0100 Subject: [PATCH] [MIRROR] Vend-A-Trays can be moved onto tables. (#2972) * Vend-A-Trays can be moved onto tables (#56503) Vend a trays are mapped onto kitchen tables and bar counters. They can't be moved back onto the table with deconstructing the table. This gives them the table passflag, allowing them to be just moved back onto the tabletop. * Vend-A-Trays can be moved onto tables. Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com> --- code/game/objects/structures/displaycase.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm index e279605b5ac..9fde572f584 100644 --- a/code/game/objects/structures/displaycase.dm +++ b/code/game/objects/structures/displaycase.dm @@ -389,6 +389,7 @@ req_access = null alert = FALSE //No, we're not calling the fire department because someone stole your cookie. glass_fix = FALSE //Fixable with tools instead. + pass_flags = PASSTABLE ///Can be placed and moved onto a table. ///The price of the item being sold. Altered by grab intent ID use. var/sale_price = 20 ///The Account which will receive payment for purchases. Set by the first ID to swipe the tray.