diff options
author | Haru <haru@dotalux.com> | 2017-05-15 01:25:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-15 01:25:39 +0200 |
commit | be118c7fad6df29dc691452ef511ac12fea37a06 (patch) | |
tree | 36c9f9e7714ffea7d1b9d21b86ddc7ed61e955c0 /src/map/channel.h | |
parent | ab333a87fb891793321b0e4467d8389c8f80be35 (diff) | |
parent | 8669002016bc60019a317124ae088a8053a0238b (diff) | |
download | hercules-be118c7fad6df29dc691452ef511ac12fea37a06.tar.gz hercules-be118c7fad6df29dc691452ef511ac12fea37a06.tar.bz2 hercules-be118c7fad6df29dc691452ef511ac12fea37a06.tar.xz hercules-be118c7fad6df29dc691452ef511ac12fea37a06.zip |
Merge pull request #1719 from mekolat/channel2
add channel handler events
Diffstat (limited to 'src/map/channel.h')
-rw-r--r-- | src/map/channel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/channel.h b/src/map/channel.h index e8696fd90..4ac3c6037 100644 --- a/src/map/channel.h +++ b/src/map/channel.h @@ -23,6 +23,8 @@ #include "common/hercules.h" #include "common/mmo.h" +#include "map/map.h" // EVENT_NAME_LENGTH, MAX_EVENTQUEUE + /** * Declarations **/ @@ -85,6 +87,7 @@ struct channel_data { unsigned char color; struct DBMap *users; struct DBMap *banned; + char handlers[MAX_EVENTQUEUE][EVENT_NAME_LENGTH]; unsigned int options; unsigned int owner; enum channel_types type; |