Allows Robots and Simple Bots to Salute (#30614)

* Update silicon_emote.dm

* Update emote_keybinds.dm
This commit is contained in:
CRUNCH
2025-10-19 20:07:52 +01:00
committed by GitHub
parent 3e149e8e6b
commit a6eae00439
2 changed files with 17 additions and 0 deletions
@@ -103,3 +103,16 @@
var/mob/living/silicon/robot/bot = user
if(!istype(bot) || !istype(bot.module, /obj/item/robot_module/security))
return FALSE
/datum/emote/living/silicon/salute
key = "salute"
key_third_person = "salutes"
message = "salutes."
message_param = "salutes to %t."
emote_type = EMOTE_AUDIBLE
sound = "sound/effects/tong_pickup.ogg" // Either the tink of a foot stepping down or an arm hitting their head when they salute.
/datum/emote/living/silicon/salute/can_run_emote(mob/user, status_check, intentional)
. = ..()
if(is_ai(user)) // AI has no moving parts to salute with, sadly.
return FALSE