Tweak cat PR

This commit is contained in:
Aronai Sieyes
2021-07-20 17:07:02 -04:00
committed by GitHub
parent d0e495f8d8
commit 4505403a11
@@ -7,7 +7,7 @@
var/named
/obj/item/device/text_to_speech/attack_self(mob/user as mob)
if(user.incapacitated(INCAPACITATION_KNOCKDOWN) || user.incapacitated(INCAPACITATION_DISABLED)) // EDIT: We can use the device only if we are not in certain types of incapacitation. We don't want chairs stopping us from texting!!
if(user.incapacitated(INCAPACITATION_KNOCKDOWN|INCAPACITATION_DISABLED)) // EDIT: We can use the device only if we are not in certain types of incapacitation. We don't want chairs stopping us from texting!!
to_chat(user, "You cannot activate the device in your state.")
return
@@ -29,4 +29,4 @@
loc.audible_message("", runemessage = "\[TTS Voice\] [message]")
/obj/item/device/text_to_speech/AltClick(mob/user) // QOL Change
attack_self(user)
attack_self(user)