diff options
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index c19164d1a..c339407dc 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6177,6 +6177,13 @@ ACMD_FUNC(pettalk) ARR_FIND( 0, ARRAYLENGTH(emo), i, stricmp(message, emo[i]) == 0 ); if( i < ARRAYLENGTH(emo) ) { + if (sd->emotionlasttime + 1 >= time(NULL)) { // not more than 1 per second + sd->emotionlasttime = time(NULL); + clif_skill_fail(sd, 1, 0, 1); + return 0; + } + sd->emotionlasttime = time(NULL); + clif_emotion(&pd->bl, i); return 0; } |