diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-27 02:55:24 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-27 02:55:24 +0000 |
commit | 93dca33bf53ddeba191f553e816ba7bb72774cc0 (patch) | |
tree | 04a8cb4c44c1d940b39c3d65c795c66cfd89aa73 /src/map/chat.c | |
parent | 91a25bb1534462030596bcd17784cd91e95cd88a (diff) | |
download | hercules-93dca33bf53ddeba191f553e816ba7bb72774cc0.tar.gz hercules-93dca33bf53ddeba191f553e816ba7bb72774cc0.tar.bz2 hercules-93dca33bf53ddeba191f553e816ba7bb72774cc0.tar.xz hercules-93dca33bf53ddeba191f553e816ba7bb72774cc0.zip |
- Applied the necessary changes to make @partyoption reflect it's changes on the alt+p window.
- Some code indentation cleanups.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7905 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/chat.c')
-rw-r--r-- | src/map/chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/chat.c b/src/map/chat.c index d031a446b..6d84aca4c 100644 --- a/src/map/chat.c +++ b/src/map/chat.c @@ -30,7 +30,7 @@ int chat_createchat(struct map_session_data *sd,int limit,int pub,char* pass,cha return 0; //Prevent people abusing the chat system by creating multiple chats, as pointed out by End of Exam. [Skotlex]
if (map[sd->bl.m].flag.nochat) {
- clif_displaymessage (sd->fd, msg_txt(281));
+ clif_displaymessage (sd->fd, msg_txt(281));
return 0; //Can't create chatrooms on this map.
}
pc_stop_walking(sd,1);
|