From c6e40c42800b8bea07404a45a4d5173bfa449c42 Mon Sep 17 00:00:00 2001 From: Snakebittenn Date: Sat, 1 Aug 2020 20:31:22 -0600 Subject: [PATCH] Xenowear Boot Fix (#9572) --- .../preference_setup/loadout/loadout_xeno.dm | 3 +- code/modules/clothing/shoes/jobs.dm | 4 +- html/changelogs/snakebittenn-whoops.yml | 42 +++++++++++++++++++ 3 files changed, 46 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/snakebittenn-whoops.yml diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index c3c4f8d67bb..bb8a3f1c909 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -47,4 +47,5 @@ shoes["dark toeless workboots"] = /obj/item/clothing/shoes/workboots/toeless/dark shoes["toeless black boots, short"] = /obj/item/clothing/shoes/jackboots/toeless shoes["toeless black boots, knee"] = /obj/item/clothing/shoes/jackboots/toeless/knee - shoes["toeless black boots, thigh"] = /obj/item/clothing/shoes/jackboots/toeless/thigh \ No newline at end of file + shoes["toeless black boots, thigh"] = /obj/item/clothing/shoes/jackboots/toeless/thigh + gear_tweaks += new/datum/gear_tweak/path(shoes) \ No newline at end of file diff --git a/code/modules/clothing/shoes/jobs.dm b/code/modules/clothing/shoes/jobs.dm index 748b7d7a8fc..a8ef4cd27b2 100644 --- a/code/modules/clothing/shoes/jobs.dm +++ b/code/modules/clothing/shoes/jobs.dm @@ -49,8 +49,8 @@ /obj/item/clothing/shoes/jackboots/toeless/thigh name = "thigh-high toeless black boots" desc = "Modified pair of even taller boots, particularly friendly to those species whose toes hold claws." - icon_state = "kneeboots_toeless" - item_state = "kneeboots_toeless" + icon_state = "thighboots_toeless" + item_state = "thighboots_toeless" /obj/item/clothing/shoes/workboots name = "workboots" diff --git a/html/changelogs/snakebittenn-whoops.yml b/html/changelogs/snakebittenn-whoops.yml new file mode 100644 index 00000000000..2ae0892e9d1 --- /dev/null +++ b/html/changelogs/snakebittenn-whoops.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Snakebittenn + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Xenos can now select boots again." + - bugfix: "Toeless thigh high boots are now actually thigh high."