diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm index e0c7dad4e8..22d1728900 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_ch.dm @@ -112,4 +112,4 @@ /datum/gear/uniform/tacticool display_name = "Tacticool turtleneck" - path = /obj/item/clothing/under/syndicate/tacticool \ No newline at end of file + path = /obj/item/clothing/under/syndicate/tacticool/loadout \ No newline at end of file diff --git a/code/modules/clothing/under/syndicate.dm b/code/modules/clothing/under/syndicate.dm index 79429a2435..0560d49e30 100644 --- a/code/modules/clothing/under/syndicate.dm +++ b/code/modules/clothing/under/syndicate.dm @@ -24,4 +24,3 @@ item_state_slots = list(slot_r_hand_str = "black", slot_l_hand_str = "black") siemens_coefficient = 1 rolled_sleeves = 0 - has_sensor = 1 //Chomp EDIT. give the fake turtleneck sensors. diff --git a/code/modules/clothing/under/syndicate_ch.dm b/code/modules/clothing/under/syndicate_ch.dm new file mode 100644 index 0000000000..1c200250ac --- /dev/null +++ b/code/modules/clothing/under/syndicate_ch.dm @@ -0,0 +1,3 @@ +/obj/item/clothing/under/syndicate/tacticool/loadout //loadout tacticool option. No armor, but has sensors + has_sensor = 1 + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0)