mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 23:54:14 +01:00
Properly adds a drill sergeant hat to the warden's locker (#42533)
* does the thing - please work * adds it to the locker * remove var/datum Co-Authored-By: VileBeggar <edmir995@gmail.com> * Update code/modules/clothing/head/jobs.dm adds space Co-Authored-By: VileBeggar <edmir995@gmail.com> * adds denton's review suggestion it's a webedit but i tested it and it worked * makes it a bit less annoying * grammar fix
This commit is contained in:
@@ -145,6 +145,21 @@
|
||||
strip_delay = 60
|
||||
dog_fashion = /datum/dog_fashion/head/warden
|
||||
|
||||
/obj/item/clothing/head/warden/drill
|
||||
name = "warden's drill hat"
|
||||
desc = "A special armored campaign hat with the security insignia emblazoned on it. Uses reinforced fabric to offer sufficient protection. Has the letters 'FMJ' enscribed on its side."
|
||||
icon_state = "wardendrill"
|
||||
item_state = "wardendrill"
|
||||
dog_fashion = null
|
||||
|
||||
/obj/item/clothing/head/warden/drill/equipped(mob/living/carbon/human/user, slot)
|
||||
..()
|
||||
if(slot == SLOT_HEAD)
|
||||
user.dna.add_mutation(YELLING)
|
||||
|
||||
/obj/item/clothing/head/warden/drill/dropped(mob/living/carbon/human/user)
|
||||
user.dna.remove_mutation(YELLING)
|
||||
|
||||
/obj/item/clothing/head/beret/sec
|
||||
name = "security beret"
|
||||
desc = "A robust beret with the security insignia emblazoned on it. Uses reinforced fabric to offer sufficient protection."
|
||||
|
||||
Reference in New Issue
Block a user