From 626c8b4c26a7b1d87e6136587f5774eec977a588 Mon Sep 17 00:00:00 2001 From: CrAzYPiLoT Date: Mon, 11 Jan 2016 23:56:33 +0100 Subject: [PATCH] Footsteps fix Fixes half of #2786, other half has already been fixed --- code/modules/clothing/shoes/miscellaneous.dm | 2 ++ html/changelogs/CrAzYPiLoT-Footsteps.yml | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 html/changelogs/CrAzYPiLoT-Footsteps.yml diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 154526cee3f..3200c0edcad 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -76,6 +76,7 @@ item_color = "clown" var/footstep = 1 //used for squeeks whilst walking species_restricted = null + silence_steps = 1 /obj/item/clothing/shoes/clown_shoes/step_action(var/mob/living/carbon/human/H) if(!istype(H)) return 0 @@ -98,6 +99,7 @@ strip_delay = 50 put_on_delay = 50 var/footstep = 1 + silence_steps = 1 /obj/item/clothing/shoes/jackboots/step_action(var/mob/living/carbon/human/H) if(!istype(H)) return 0 diff --git a/html/changelogs/CrAzYPiLoT-Footsteps.yml b/html/changelogs/CrAzYPiLoT-Footsteps.yml new file mode 100644 index 00000000000..f7205915750 --- /dev/null +++ b/html/changelogs/CrAzYPiLoT-Footsteps.yml @@ -0,0 +1,7 @@ + +author: CrAzYPiLoT + +delete-after: True + +changes: + - bugfix: "Fixes the footsteps sounds to the fullest." \ No newline at end of file