Adds missing simple_animal help text

This commit is contained in:
Tails2091
2019-03-09 17:57:05 -05:00
parent 0a47c70426
commit 8eadbdcd59
3 changed files with 7 additions and 1 deletions
@@ -1,4 +1,4 @@
/mob/living/simple_animal/bot/emote(var/act, var/m_type=1, var/message = null)
/mob/living/simple_animal/bot/emote(act, m_type=1, message = null)
var/param = null
if(findtext(act, "-", 1, null))
var/t1 = findtext(act, "-", 1, null)
@@ -69,4 +69,6 @@
playsound(src.loc, 'sound/goonstation/voice/robot_scream.ogg', 80, 0)
m_type = 2
if("help")
to_chat(src, "scream(s), yes, no, beep, buzz, ping")
..(act, m_type, message)
@@ -278,5 +278,7 @@
message = "<B>\The [src]</B> chirps!"
m_type = 2 //audible
playsound(src, chirp_sound, 40, 1, 1)
if("help")
to_chat(src, "scream, chirp")
..(act, m_type, message)
@@ -265,6 +265,8 @@
if("scream")
message = "<B>\The [src]</B> whimpers."
m_type = 2
if("help")
to_chat(src, "scream")
..(act, m_type, message)