From da9a9619bb52abcd2e5bf6e119e4413bc95eabe6 Mon Sep 17 00:00:00 2001 From: Kaedwuff Date: Sat, 27 Oct 2018 13:29:58 -0500 Subject: [PATCH] No more magic shoes (#5336) It's bugged me for a while that wizards rely on not just obviously mystical clothing, but wearing a special pair of utterly nonmagical sandals, or, in a singular special case, literal 'magic shoes'. I've always felt magic clothing should be enough, honestly. I feel like the shoes thing was only added in the ancient past to give players the ability to shoot off a wizard's feet to take away their casting powers. So I removed the footwear requirement. Now, wizards shall be free to wear whatever they want on their assorted leg appendages. Feedback thread https://forums.aurorastation.org/viewtopic.php?f=18&t=11999 --- code/game/antagonist/outsider/wizard.dm | 7 ++-- code/modules/clothing/shoes/miscellaneous.dm | 2 -- code/modules/spells/storage.dm | 2 +- html/changelogs/Kaedwuff - Shoe Freedom.yml | 37 ++++++++++++++++++++ 4 files changed, 40 insertions(+), 8 deletions(-) create mode 100644 html/changelogs/Kaedwuff - Shoe Freedom.yml diff --git a/code/game/antagonist/outsider/wizard.dm b/code/game/antagonist/outsider/wizard.dm index 30617c2ade8..65695e823cd 100644 --- a/code/game/antagonist/outsider/wizard.dm +++ b/code/game/antagonist/outsider/wizard.dm @@ -140,12 +140,9 @@ Made a proc so this is not repeated 14 (or more) times.*/ // Humans can wear clothes. /mob/living/carbon/human/wearing_wiz_garb() if(!is_wiz_garb(src.wear_suit) && (!src.species.hud || (slot_wear_suit in src.species.hud.equip_slots))) - src << "I don't feel strong enough without my robe." - return 0 - if(!is_wiz_garb(src.shoes) && (!species.hud || (slot_shoes in src.species.hud.equip_slots))) - src << "I don't feel strong enough without my sandals." + src << "I don't feel strong enough without my robes." return 0 if(!is_wiz_garb(src.head) && (!species.hud || (slot_head in src.species.hud.equip_slots))) - src << "I don't feel strong enough without my hat." + src << "I don't feel strong enough without my headwear." return 0 return 1 diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index e43946bd4e2..4c9425dae99 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -46,8 +46,6 @@ species_restricted = null body_parts_covered = 0 - wizard_garb = 1 - /obj/item/clothing/shoes/sandal/marisa desc = "A pair of magic, black shoes." name = "magic shoes" diff --git a/code/modules/spells/storage.dm b/code/modules/spells/storage.dm index a03601595c1..913f42ca315 100644 --- a/code/modules/spells/storage.dm +++ b/code/modules/spells/storage.dm @@ -22,7 +22,7 @@ ..() new /obj/item/clothing/suit/space/void/wizard(src) new /obj/item/clothing/head/helmet/space/void/wizard(src) - + /obj/structure/closet/wizard/scrying name = "scrying orb" desc = "An incandescent orb of crackling energy, using it will allow you to ghost while alive, allowing you to spy upon the station with ease. In addition, buying it will permanently grant you x-ray vision." diff --git a/html/changelogs/Kaedwuff - Shoe Freedom.yml b/html/changelogs/Kaedwuff - Shoe Freedom.yml new file mode 100644 index 00000000000..e2c7354dd8a --- /dev/null +++ b/html/changelogs/Kaedwuff - Shoe Freedom.yml @@ -0,0 +1,37 @@ +################################ +# 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 +################################# + +# Your name. +author: Kaedwuff + +# 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: + - tweak: "An intense campaign of confidence boosting programs has finally allowed the Wizard Federation's members to cast without their lucky shoes."