diff options
author | Wushin <pasekei@gmail.com> | 2016-05-11 17:01:06 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2016-05-11 17:01:06 -0500 |
commit | a8e9ab18abcc3b3dc29098c41ffa5c9a915e8d57 (patch) | |
tree | bf8ffdf1ca7bdaf6b178d5c4a5bc07c3f86df7c3 /src/map/map.hpp | |
parent | b155404944cdf3bb500b7d2978fa2ecd34c14c3c (diff) | |
parent | 211b09001aecdc5e1b13016cda39f54ba7aa20e4 (diff) | |
download | tmwa-a8e9ab18abcc3b3dc29098c41ffa5c9a915e8d57.tar.gz tmwa-a8e9ab18abcc3b3dc29098c41ffa5c9a915e8d57.tar.bz2 tmwa-a8e9ab18abcc3b3dc29098c41ffa5c9a915e8d57.tar.xz tmwa-a8e9ab18abcc3b3dc29098c41ffa5c9a915e8d57.zip |
Merge pull request #220 from mekolat/mute
add MUTE params
Diffstat (limited to 'src/map/map.hpp')
-rw-r--r-- | src/map/map.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/map/map.hpp b/src/map/map.hpp index 7732af9..897787e 100644 --- a/src/map/map.hpp +++ b/src/map/map.hpp @@ -290,6 +290,14 @@ struct map_session_data : block_list, SessionData int chat_total_repeats; RString chat_lastmsg; + struct + { + unsigned global:1; + unsigned party:1; + unsigned whisper:1; + unsigned guild:1; + } mute; + tick_t flood_rates[0x220]; tick_t packet_flood_reset_due; int packet_flood_in; |