Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from 2 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
11 changes: 11 additions & 0 deletions code/modules/jobs/job_types/shaft_miner.dm
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

/datum/outfit/job/miner
name = "Shaft Miner"
var/static/gps_number = 1
Comment thread
SomeguyManperson marked this conversation as resolved.
jobtype = /datum/job/mining

pda_type = /obj/item/pda/shaftminer
Expand All @@ -59,6 +60,16 @@

chameleon_extras = /obj/item/gun/energy/kinetic_accelerator

/datum/outfit/job/miner/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
..()
if(visualsOnly)
return
if(H.stat == DEAD)
return
for(var/obj/item/gps in H.contents)
gps.gpstag = "MINE[gps_number]"
gps_number ++

/datum/outfit/job/miner/equipped
name = "Shaft Miner (Equipment)"
suit = /obj/item/clothing/suit/hooded/explorer
Expand Down