From 982b0373d13aaa4afa417ad12f0a5d0f9f65de11 Mon Sep 17 00:00:00 2001 From: Likteer <68878861+Likteer@users.noreply.github.com> Date: Wed, 16 Jul 2025 03:05:40 +0200 Subject: [PATCH] Adds 2 pre-existing mugs to loadout (#91910) --- code/modules/loadout/categories/pocket.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/loadout/categories/pocket.dm b/code/modules/loadout/categories/pocket.dm index 3d8a9e19aa9..30b2ec9fde2 100644 --- a/code/modules/loadout/categories/pocket.dm +++ b/code/modules/loadout/categories/pocket.dm @@ -273,6 +273,14 @@ name = "Holodisk" item_path = /obj/item/disk/holodisk +/datum/loadout_item/pocket_items/mug_nt + name = "Nanotrasen Mug" + item_path = /obj/item/reagent_containers/cup/glass/mug/nanotrasen + +/datum/loadout_item/pocket_items/britcup + name = "British Flag Cup" + item_path = /obj/item/reagent_containers/cup/glass/mug/britcup + // The wallet loadout item is special, and puts the player's ID and other small items into it on initialize (fancy!) /datum/loadout_item/pocket_items/wallet name = "Wallet"