Touchup soulcatcher emoting

This commit is contained in:
Aronai Sieyes
2021-05-05 13:49:10 -04:00
parent 0584a94243
commit b44f14cd7a
4 changed files with 34 additions and 33 deletions
@@ -1,20 +1,4 @@
// Not specifically /human type because those won't allow FBPs to use them
/decl/emote/helper/nif/check_user(mob/living/carbon/human/user)
if(!istype(user) || !user.nif)
return FALSE
return ..()
/decl/emote/helper/nif/nsay
key = "nsay"
/decl/emote/helper/nsay/do_emote(var/mob/living/carbon/human/user, var/extra_params)
user.nsay()
/decl/emote/helper/nif/nme
key = "nme"
/decl/emote/helper/nme/do_emote(var/mob/living/carbon/human/user, var/extra_params)
user.nme()
/decl/emote/helper/vwag
key = "vwag"
emote_message_3p = ""
+8
View File
@@ -44,6 +44,14 @@
act = copytext(tempstr,1,splitpoint)
message = copytext(tempstr,splitpoint+1,0)
//VOREStation Add - NIF soulcatcher shortcuts
if(act == "nsay")
return nsay(message)
if(act == "nme")
return nme(message)
//VOREStation Add End
var/decl/emote/use_emote = usable_emotes[act]
if(!use_emote)
to_chat(src, SPAN_WARNING("Unknown emote '[act]'. Type <b>say *help</b> for a list of usable emotes."))