diff --git a/code/modules/surgery/organs/vocal_cords.dm b/code/modules/surgery/organs/vocal_cords.dm
index 6e118068127..51267c859b9 100644
--- a/code/modules/surgery/organs/vocal_cords.dm
+++ b/code/modules/surgery/organs/vocal_cords.dm
@@ -112,6 +112,9 @@ GLOBAL_DATUM_INIT(multispin_words, /regex, regex("like a record baby"))
if(check_flags & AB_CHECK_CONSCIOUS)
if(owner.stat)
return FALSE
+ if(istype(owner.loc, /obj/effect/dummy/spell_jaunt))
+ to_chat(owner, "No one can hear you when you are jaunting, no point in talking now!")
+ return FALSE
return TRUE
/datum/action/item_action/organ_action/colossus/Trigger()
@@ -139,12 +142,15 @@ GLOBAL_DATUM_INIT(multispin_words, /regex, regex("like a record baby"))
return FALSE
if(owner.stat)
return FALSE
+ if(istype(owner.loc, /obj/effect/dummy/spell_jaunt))
+ to_chat(owner, "No one can hear you when you are jaunting, no point in talking now!")
+ return FALSE
return TRUE
/obj/item/organ/internal/vocal_cords/colossus/handle_speech(message)
spans = "colossus yell" //reset spans, just in case someone gets deculted or the cords change owner
if(iscultist(owner))
- spans += " narsiesmall"
+ spans += "narsiesmall"
return "[uppertext(message)]"
/obj/item/organ/internal/vocal_cords/colossus/speak_with(message)