Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIRROR] detective gaming tweak #5100

Merged
merged 2 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
Loading