diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index ca63961f425..a8d0efb2626 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -23,6 +23,9 @@
var/can_be_bloody = TRUE
+ ///Prevents the article of clothing from gaining the mood boost from washing. Used for the tacticool turtleneck.
+ var/stubborn_stains = FALSE
+
/// What items can be consumed to repair this clothing (must by an /obj/item/stack)
var/repairable_by = /obj/item/stack/sheet/cloth
@@ -397,6 +400,9 @@
// you just dont get the same feeling with handwashed clothes
/obj/item/clothing/machine_wash()
. = ..()
+ if(stubborn_stains) //Just can't make it feel right
+ return
+
var/fresh_mood = AddComponent( \
/datum/component/onwear_mood, \
saved_event_type = /datum/mood_event/fresh_laundry, \
diff --git a/code/modules/clothing/under/syndicate.dm b/code/modules/clothing/under/syndicate.dm
index 51533953c18..ca640f49a0f 100644
--- a/code/modules/clothing/under/syndicate.dm
+++ b/code/modules/clothing/under/syndicate.dm
@@ -70,12 +70,31 @@
inhand_icon_state = "bl_suit"
has_sensor = HAS_SENSORS
armor_type = /datum/armor/syndicate_tacticool
+ stubborn_stains = TRUE
/datum/armor/syndicate_tacticool
bio = 10
fire = 50
acid = 40
+/obj/item/clothing/under/syndicate/tacticool/examine(mob/user)
+ . = ..()
+ . += "It has a label that says cleaning this 'genuine' Waffle Corp. product with cleaning solutions other than Grime Liberator telelocational podcrystals will void the warranty."
+ . += "What on earth is a telelocational podcrystal?"
+
+/obj/item/clothing/under/syndicate/tacticool/dye_item(dye_color, dye_key_override)
+ if(dye_color == DYE_SYNDICATE)
+ if(dying_key == DYE_REGISTRY_JUMPSKIRT)
+ special_wash(/obj/item/clothing/under/syndicate/skirt)
+ else
+ special_wash(/obj/item/clothing/under/syndicate)
+ qdel(src)
+ return
+ return ..()
+
+/obj/item/clothing/under/syndicate/tacticool/proc/special_wash(obj/item/clothing/under/syndicate/our_jumpsuit)
+ new our_jumpsuit(loc)
+
/obj/item/clothing/under/syndicate/tacticool/skirt
name = "tacticool skirtleneck"
desc = "Just looking at it makes you want to buy an SKS, go into the woods, and -operate-."