diff options
author | Haru <haru@dotalux.com> | 2016-04-21 23:03:43 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-04-23 09:52:31 +0200 |
commit | 7aa70331b7dcfb21533c3806a694819e70f936c2 (patch) | |
tree | f92b7137a7f0cf65ffbe5553b0075181b5b5891c /src/map/pc.h | |
parent | ccfd0549ce64e84e41069ec8e040ce9806b963f2 (diff) | |
download | hercules-7aa70331b7dcfb21533c3806a694819e70f936c2.tar.gz hercules-7aa70331b7dcfb21533c3806a694819e70f936c2.tar.bz2 hercules-7aa70331b7dcfb21533c3806a694819e70f936c2.tar.xz hercules-7aa70331b7dcfb21533c3806a694819e70f936c2.zip |
Removed some code duplication in chat processing functions
Moved non-clif code that handles chat delay, atcommand detection, idle
timers to pc.c
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 05cb16a60..5d35fd1cc 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -1092,6 +1092,7 @@ END_ZEROED_BLOCK; /* End */ int (*have_magnifier) (struct map_session_data *sd); + bool (*process_chat_message) (struct map_session_data *sd, const char *message); void (*check_supernovice_call) (struct map_session_data *sd, const char *message); }; |