Skip to content

Commit

Permalink
tanker helmet path fix (#5446)
Browse files Browse the repository at this point in the history
* path fix

* fatigues too
  • Loading branch information
WatermelonsEverywhere authored Jun 13, 2024
1 parent 75b1b6a commit 9aac7dc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@
new /obj/item/clothing/under/rank/trooper/gorka(src)
new /obj/item/clothing/under/rank/trooper/cadet(src)
new /obj/item/clothing/under/rank/trooper/cadet(src)
new /obj/item/clothing/under/rank/fatigues/green(src)
new /obj/item/clothing/under/rank/fatigues/green(src)
new /obj/item/clothing/under/rank/fatigues(src)
new /obj/item/clothing/under/rank/fatigues(src)
new /obj/item/clothing/under/rank/fatigues/grey(src)
new /obj/item/clothing/under/rank/fatigues/grey(src)
new /obj/item/clothing/under/rank/fatigues/navy(src)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
/datum/gear/factionblackshield/fatigueselection/New() //Like so.
..()
var/fatigues = list(
"Green Fatigues" = /obj/item/clothing/under/rank/fatigues/green,
"Green Fatigues" = /obj/item/clothing/under/rank/fatigues,
"Navy Fatigues" = /obj/item/clothing/under/rank/fatigues/navy,
"Grey Fatigues" = /obj/item/clothing/under/rank/fatigues/grey,
"Camo Fatigues" = /obj/item/clothing/under/rank/fatigues/camo,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@

/datum/gear/head/tanker_helmet/color_presets
display_name = "tanker/rugby helmet"
path = /obj/item/clothing/head/armor/helmet/tanker
path = /obj/item/clothing/head/helmet/tanker
cost = 1

/datum/gear/head/ribbon
Expand Down
2 changes: 1 addition & 1 deletion code/modules/clothing/head/helmet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
rad = 0
)

/obj/item/clothing/head/armor/helmet/tanker/verb/toggle_style()
/obj/item/clothing/head/helmet/tanker/verb/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr
Expand Down
16 changes: 8 additions & 8 deletions code/modules/clothing/under/jobs/militia.dm
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
* Extra Fatigues
*/

/obj/item/clothing/under/rank/fatigues/green
/obj/item/clothing/under/rank/fatigues
name = "green utility uniform"
desc = "A green utility uniform, bearing the old marks of patches long since removed."
icon_state = "greenutility"
item_state = "greenutility"

/obj/item/clothing/under/rank/fatigues/green/verb/toggle_style()
/obj/item/clothing/under/rank/fatigues/verb/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr
Expand Down Expand Up @@ -63,7 +63,7 @@
icon_state = "greyutility"
item_state = "greyutility"

/obj/item/clothing/under/rank/fatigues/grey/verb/toggle_style()
/obj/item/clothing/under/rank/fatigues/grey/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr
Expand Down Expand Up @@ -98,7 +98,7 @@
icon_state = "navyutility"
item_state = "navyutility"

/obj/item/clothing/under/rank/fatigues/navy/verb/toggle_style()
/obj/item/clothing/under/rank/fatigues/navy/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr
Expand Down Expand Up @@ -134,7 +134,7 @@
icon_state = "tanutility"
item_state = "tanutility"

/obj/item/clothing/under/rank/fatigues/tan/verb/toggle_style()
/obj/item/clothing/under/rank/fatigues/tan/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr
Expand Down Expand Up @@ -169,7 +169,7 @@
icon_state = "camoutility"
item_state = "camoutility"

/obj/item/clothing/under/rank/fatigues/camo/verb/toggle_style()
/obj/item/clothing/under/rank/fatigues/camo/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr
Expand Down Expand Up @@ -223,8 +223,8 @@
icon_state = "bsjungle"
item_state = "bsjungle"

/obj/item/clothing/under/rank/fatigues/kav/verb/toggle_style()
set name = "Adjust style"
/obj/item/clothing/under/rank/fatigues/kav/toggle_style()
set name = "Adjust Style"
set category = "Object"
set src in usr

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
/obj/item/clothing/suit/armor/vest,
/obj/item/clothing/suit/armor/vest/ironhammer,
/obj/item/clothing/suit/storage/vest,
/obj/item/clothing/head/armor/helmet/tanker,
/obj/item/clothing/head/helmet/tanker,
/obj/item/clothing/suit/armor/bulletproof,
/obj/item/clothing/suit/armor/laserproof
)
Expand Down

0 comments on commit 9aac7dc

Please sign in to comment.