diff --git a/code/datums/Emote_system/emotes.dm b/code/datums/Emote_system/emotes.dm index 3e7058d3f7a..dc36df288a7 100644 --- a/code/datums/Emote_system/emotes.dm +++ b/code/datums/Emote_system/emotes.dm @@ -217,7 +217,6 @@ above it. If you don't want this, make the call to ..() then use commands = new selfText = "buzz" audible = 1 sound = 'sound/machines/buzz-sigh.ogg' - cooldown = 50 canTarget = 1 targetMob = 1 @@ -231,6 +230,19 @@ above it. If you don't want this, make the call to ..() then use commands = new if(user.is_mechanical()) return 1 +/datum/emote/buzz/buzz2 + name = "buzz 2" + desc = "makes the mob buzz in an irritated way" + text = "makes an irritated buzzing sound" + selfText = "make an irritated buzzing sound" + sound = "sound/machines/buzz-two.ogg" + allowParent = 1 + +/datum/emote/buzz/buzz2/New() + ..() + commands = new /list() + commands += "buzz2" + /datum/emote/chirp name = "chirp" desc = "Makes the mob chirp"