From 2a3a5483b0746f7decc19da64f21c5f726688849 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Mon, 31 Aug 2020 20:36:18 -0700 Subject: [PATCH] Merge pull request #7589 from listerla/toelessjackboots Adds toe-less jackboots to xenowear --- .../preference_setup/loadout/loadout_xeno.dm | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index dc222014ef..995352e708 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -417,4 +417,17 @@ /datum/gear/accessory/teshneckscarf/New() ..() - gear_tweaks = list(gear_tweak_free_color_choice) \ No newline at end of file + gear_tweaks = list(gear_tweak_free_color_choice) + +/datum/gear/shoes/toelessjack + display_name = "toe-less jackboots" + path = /obj/item/clothing/shoes/boots/jackboots/toeless + + +/datum/gear/shoes/toelessknee + display_name = "toe-less jackboots, knee-length" + path = /obj/item/clothing/shoes/boots/jackboots/toeless/knee + +/datum/gear/shoes/toelessthigh + display_name = "toe-less jackboots, thigh-length" + path = /obj/item/clothing/shoes/boots/jackboots/toeless/thigh \ No newline at end of file