Fixes the white cane sounds, and blind mob's examine. (#67941)

This commit is contained in:
ArcaneMusic
2022-06-24 16:58:51 -07:00
committed by GitHub
parent d47a22a876
commit 9d826a5e7f
4 changed files with 13 additions and 8 deletions
+2 -1
View File
@@ -455,18 +455,19 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301
righthand_file = 'icons/mob/inhands/weapons/melee_righthand.dmi'
force = 1
w_class = WEIGHT_CLASS_SMALL
item_flags = BLIND_TOOL
custom_materials = list(/datum/material/iron = 600)
/obj/item/cane/white/Initialize(mapload)
. = ..()
AddComponent(/datum/component/transforming, \
force_on = 7, \
hitsound_on = hitsound, \
w_class_on = WEIGHT_CLASS_BULKY, \
clumsy_check = FALSE, \
attack_verb_continuous_on = list("smacks", "strikes", "cracks", "beats"), \
attack_verb_simple_on = list("smack", "strike", "crack", "beat"))
RegisterSignal(src, COMSIG_TRANSFORMING_ON_TRANSFORM, .proc/on_transform)
ADD_TRAIT(src, TRAIT_BLIND_TOOL, ITEM_BLIND_TRAIT)
/*
* Signal proc for [COMSIG_TRANSFORMING_ON_TRANSFORM].