From 8fbbb11f16bf1aa1bf328f4e8695d7ce399e94a2 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:24:14 +0100 Subject: [PATCH] Add species insulated gloves to the syndicate toolbox (#21779) You're an antag, you spawn a toolbox expecting to have all the tools. Nope. No gloves for you because you're a taj or unathi. This is just the quick fix solution to this since they got separate insulated gloves. --- code/game/objects/items/weapons/storage/toolbox.dm | 2 ++ html/changelogs/SpeciesInsulatedGloves.yml | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 html/changelogs/SpeciesInsulatedGloves.yml diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm index 973990df582..36b557963c1 100644 --- a/code/game/objects/items/weapons/storage/toolbox.dm +++ b/code/game/objects/items/weapons/storage/toolbox.dm @@ -113,6 +113,8 @@ force = 16 starts_with = list(\ /obj/item/clothing/gloves/yellow = 1,\ + /obj/item/clothing/gloves/yellow/specialt = 1,\ + /obj/item/clothing/gloves/yellow/specialu = 1,\ /obj/item/screwdriver = 1,\ /obj/item/wrench = 1,\ /obj/item/weldingtool = 1, diff --git a/html/changelogs/SpeciesInsulatedGloves.yml b/html/changelogs/SpeciesInsulatedGloves.yml new file mode 100644 index 00000000000..4fdf83acbd3 --- /dev/null +++ b/html/changelogs/SpeciesInsulatedGloves.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "The antag toolbox now also have insulated gloves fitting taj and unathi."