From 70463dcb59f37807a2305d42f2d41dad23e6fbfc Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 10 Sep 2025 21:53:53 -0500 Subject: [PATCH] Add GPS debug tool to admin debug box (#92925) ## About The Pull Request This adds the existing GPS debug tool to the admin debug box that displays x, y, z coordinates on a turf that is somewhat useful when testing z-level boundaries. dreamseeker_NyC1iJ4SPK ## Why It's Good For The Game Easier debug tools for testing. ## Changelog :cl: qol: The GPS debug tool will now spawn with the admin outfit apart of the debug tools admin: Add GPS debug tool to admin debug box /:cl: --- code/game/objects/items/storage/boxes/engineering_boxes.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/storage/boxes/engineering_boxes.dm b/code/game/objects/items/storage/boxes/engineering_boxes.dm index 9b8b7694b5d..66e9887039e 100644 --- a/code/game/objects/items/storage/boxes/engineering_boxes.dm +++ b/code/game/objects/items/storage/boxes/engineering_boxes.dm @@ -39,9 +39,10 @@ /obj/item/storage/bag/sheetsnatcher/debug=1, /obj/item/uplink/debug=1, /obj/item/uplink/nuclear/debug=1, - /obj/item/clothing/ears/earmuffs/debug = 1, + /obj/item/clothing/ears/earmuffs/debug=1, + /obj/item/gps/visible_debug=1, ) - generate_items_inside(items_inside,src) + generate_items_inside(items_inside, src) /obj/item/storage/box/plastic name = "plastic box"