diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-18 08:43:28 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-18 08:43:28 +0000 |
commit | 72305739e4c89c8c95175fb700c59756c4a1631c (patch) | |
tree | 2185483a8c0b57efc25e6829c6358183bfd70eec /src/map/chat.h | |
parent | 7bdb98374ade0b0d2aad8e2f85b0c799112c170d (diff) | |
download | hercules-72305739e4c89c8c95175fb700c59756c4a1631c.tar.gz hercules-72305739e4c89c8c95175fb700c59756c4a1631c.tar.bz2 hercules-72305739e4c89c8c95175fb700c59756c4a1631c.tar.xz hercules-72305739e4c89c8c95175fb700c59756c4a1631c.zip |
Added official behavior to chat room kicking, when you're kicked out of the chat room you're 'blacklisted', making you unable to rejoin that same chat room instance again.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15487 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chat.h')
-rw-r--r-- | src/map/chat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/chat.h b/src/map/chat.h index b80832d3d..cb2e6ecd9 100644 --- a/src/map/chat.h +++ b/src/map/chat.h @@ -23,6 +23,7 @@ struct chat_data { struct map_session_data* usersd[20]; struct block_list* owner; char npc_event[EVENT_NAME_LENGTH]; + DBMap* kick_list; //DBMap of users who were kicked from this chat }; |