Skip to content

Commit

Permalink
[MIRROR] detective gaming tweak (#5100)
Browse files Browse the repository at this point in the history
* detective gaming tweak (#4464)

* remove crewpointer & det scanner from det closet

* Update code/game/objects/structures/crates_lockers/closets/secure/security.dm

Co-authored-by: Bloop <[email protected]>

* Update code/game/objects/structures/crates_lockers/closets/secure/security.dm

Co-authored-by: Bloop <[email protected]>

* use modular overload for backpack

---------

Co-authored-by: Bloop <[email protected]>

* [MIRROR] detective gaming tweak

---------

Co-authored-by: hack-wrench <[email protected]>
Co-authored-by: Bloop <[email protected]>
Co-authored-by: StealsThePRs <[email protected]>
  • Loading branch information
4 people authored Oct 14, 2024
1 parent da21d79 commit 171c52b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@
..()
new /obj/item/storage/box/evidence(src)
new /obj/item/radio/headset/headset_sec(src)
new /obj/item/detective_scanner(src)
// new /obj/item/detective_scanner(src) // NOVA EDIT REMOVAL
new /obj/item/flashlight/seclite(src)
new /obj/item/holosign_creator/security(src)
new /obj/item/reagent_containers/spray/pepper(src)
new /obj/item/clothing/suit/armor/vest/det_suit(src)
new /obj/item/toy/crayon/white(src) //NOVA EDIT CHANGE - ORIGINAL: /obj/item/storage/belt/holster/detective/full(src)
new /obj/item/pinpointer/crew(src)
//new /obj/item/pinpointer/crew(src) // NOVA EDIT REMOVAL - Added to detective outfit backpack instead
new /obj/item/binoculars(src)
new /obj/item/storage/box/rxglasses/spyglasskit(src)
new /obj/item/clothing/head/fedora/inspector_hat(src)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
// Moves PDA to left pocket, gives them a holster in their belt slot
/datum/outfit/job/detective
belt = /obj/item/storage/belt/holster/detective/full
l_pocket = /obj/item/modular_computer/pda/detective
l_pocket = /obj/item/modular_computer/pda/detective // ORIGINAL: /obj/item/toy/crayon/white
r_pocket = /obj/item/clothing/accessory/badge/holo/detective // ORIGINAL: /obj/item/lighter
pda_slot = ITEM_SLOT_LPOCKET

/datum/outfit/job/detective/New()
. = ..()
backpack_contents -= /obj/item/storage/box/evidence
backpack_contents += list(/obj/item/pinpointer/crew = 1)

0 comments on commit 171c52b

Please sign in to comment.