diff options
author | Haru <haru@dotalux.com> | 2016-07-25 20:53:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-25 20:53:35 +0200 |
commit | bc46ac94eba15b4f5159a7fa330c93907dad7d68 (patch) | |
tree | a4a824762dcea51b82e2816eff89f7db7b060656 /src/map/chat.c | |
parent | fee640a7170ec62b55c2eb1f13477326d9fe6428 (diff) | |
parent | 03ce9e5a69b54535ea70b3776004dd7ade7e6134 (diff) | |
download | hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.tar.gz hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.tar.bz2 hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.tar.xz hercules-bc46ac94eba15b4f5159a7fa330c93907dad7d68.zip |
Merge pull request #1380 from EPuncker/messagesconf-update
Added a missing entry into messages.conf and added some comments wher…
Diffstat (limited to 'src/map/chat.c')
-rw-r--r-- | src/map/chat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/chat.c b/src/map/chat.c index 2fe1aacd4..145d44d1e 100644 --- a/src/map/chat.c +++ b/src/map/chat.c @@ -106,8 +106,8 @@ bool chat_createpcchat(struct map_session_data* sd, const char* title, const cha } if( map->list[sd->bl.m].flag.nochat ) { - clif->message(sd->fd, msg_sd(sd,281)); - return false; //Can't create chatrooms on this map. + clif->message(sd->fd, msg_sd(sd,281)); // You can't create chat rooms in this map + return false; } if (map->getcell(sd->bl.m, &sd->bl, sd->bl.x, sd->bl.y, CELL_CHKNOCHAT) ) { |