diff options
Diffstat (limited to 'src/map/send.c')
-rw-r--r-- | src/map/send.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/map/send.c b/src/map/send.c index 097622a..7471c1f 100644 --- a/src/map/send.c +++ b/src/map/send.c @@ -274,3 +274,11 @@ void send_pet_say(struct map_session_data *sd, const char *const message) buf[len - 1] = 0; clif->GlobalMessage(&sd->pd->bl, buf); } + +void send_pet_emote(struct map_session_data *sd, const int emote) +{ + if (!sd || !sd->pd) + return; + + clif->emotion(&sd->pd->bl, emote); +} |