mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
You can now emote using the 'me' command as a simple animal.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2213 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -139,7 +139,7 @@
|
||||
movement_target.attack_animal(src)
|
||||
else if(ishuman(movement_target.loc) )
|
||||
if(prob(20))
|
||||
emote("stares at the [movement_target] that [movement_target.loc] has with a sad puppy-face")
|
||||
emote("", 0, "stares at the [movement_target] that [movement_target.loc] has with a sad puppy-face")
|
||||
|
||||
/mob/living/simple_animal/New()
|
||||
..()
|
||||
|
||||
@@ -14,8 +14,13 @@
|
||||
/mob/verb/me_verb(message as text)
|
||||
set name = "Me"
|
||||
set category = "IC"
|
||||
|
||||
message = trim(copytext(sanitize(message), 1, MAX_MESSAGE_LEN))
|
||||
usr.emote("me",1,message)
|
||||
|
||||
if(ishuman(src))
|
||||
usr.emote("me",1,message)
|
||||
else
|
||||
usr.emote(message)
|
||||
|
||||
/mob/proc/say_dead(var/message)
|
||||
var/name = src.real_name
|
||||
|
||||
Reference in New Issue
Block a user