6eb3dce
--- server/c_chat.c~	2014-04-05 17:30:49.000000000 -0500
6eb3dce
+++ server/c_chat.c	2016-03-01 10:15:58.576275572 -0600
6eb3dce
@@ -645,7 +645,7 @@
6eb3dce
 
6eb3dce
     if (*params == '\0') {
6eb3dce
         if (emotion > EMOTE_FIRST && emotion < EMOTE_LAST && single_emotes[emotion - 1][0] != NULL) {
6eb3dce
-            snprintf(buf, sizeof(buf), single_emotes[emotion - 1][0]);
6eb3dce
+            snprintf(buf, sizeof(buf), "%s", single_emotes[emotion - 1][0]);
6eb3dce
             snprintf(buf2, sizeof(buf2), single_emotes[emotion - 1][1], op->name);
6eb3dce
         } else {
6eb3dce
             snprintf(buf, sizeof(buf), "You are a nut.");