From f4ad05cbd07c482e7ae97ba43fcc4b772b26bb68 Mon Sep 17 00:00:00 2001 From: fordmichigan <149270317+fordmichigan@users.noreply.github.com> Date: Sun, 5 Nov 2023 21:35:44 -0500 Subject: [PATCH] Adding toners to rec vendors (#4834) # About the pull request Adds toners to the rec vendor fixes #4603 # Explain why it's good for the game Allows for prolonged use of the copiers during the round. # Testing Photographs and Procedure
Screenshots & Videos ![2023-11-04 (3)](https://github.com/cmss13-devs/cmss13/assets/149270317/fd17b2b2-0908-48f4-a47c-56b7d6d72ebc)
# Changelog :cl: Alexguinea add: Added toners to the rec vendor /:cl: --- code/game/machinery/vending/vending_types.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm index a61934324491..c109db25b3a9 100644 --- a/code/game/machinery/vending/vending_types.dm +++ b/code/game/machinery/vending/vending_types.dm @@ -411,6 +411,7 @@ /obj/item/device/camera = 5, /obj/item/device/camera_film = 10, /obj/item/notepad = 5, + /obj/item/device/toner = 5, ) contraband = list(/obj/item/toy/sword = 2) @@ -431,5 +432,6 @@ /obj/item/toy/deck = 20, /obj/item/toy/deck/uno = 15, /obj/item/device/camera = 30, + /obj/item/device/toner = 15, ) product_type = VENDOR_PRODUCT_TYPE_RECREATIONAL