Skip to content

Commit 2bc2b7d

Browse files
committed
for debugging purposes
1 parent cc5fc54 commit 2bc2b7d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

code/modules/vox/vox_holder.dm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// The current [/datum/vox_voice] instance being used.
77
VAR_PRIVATE/datum/vox_voice/current_voice
88
/// Whether this VOX holder checks to see if mobs can hear or not by default.
9-
var/check_hearing = TRUE
9+
var/check_hearing = FALSE
1010
/// The VOX word(s) that were previously inputed.
1111
var/previous_words
1212
/// The cooldown between VOX announcements.
@@ -53,6 +53,9 @@
5353
/datum/vox_holder/ui_assets(mob/user)
5454
return list(get_asset_datum(/datum/asset/json/vox_voices)) // this is an asset so we don't have to send a huge list each time
5555

56+
/datum/vox_holder/ui_state(mob/user)
57+
return GLOB.always_state
58+
5659
/datum/vox_holder/proc/speak(mob/speaker, message, name_override, turf/origin_turf, test = FALSE, check_hearing)
5760
if(!test && !COOLDOWN_FINISHED(src, announcement_cooldown))
5861
return FALSE

0 commit comments

Comments
 (0)