diff options
-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 0a2b18d37..1a0730b51 100644 --- a/src/map/chat.c +++ b/src/map/chat.c @@ -32,7 +32,7 @@ static struct chat_data* chat_createchat(struct block_list* bl, const char* titl safestrncpy(cd->pass, pass, sizeof(cd->pass)); cd->pub = pub; cd->users = 0; - cd->limit = min(limit, ARRAYSIZE(cd->usersd)); + cd->limit = min(limit, ARRAYLENGTH(cd->usersd)); cd->trigger = trigger; memset(cd->usersd, 0, sizeof(cd->usersd)); cd->owner = bl; @@ -246,7 +246,7 @@ int chat_changechatstatus(struct map_session_data* sd, const char* title, const safestrncpy(cd->title, title, CHATROOM_TITLE_SIZE); safestrncpy(cd->pass, pass, CHATROOM_PASS_SIZE); - cd->limit = min(limit, ARRAYSIZE(cd->usersd)); + cd->limit = min(limit, ARRAYLENGTH(cd->usersd)); cd->pub = pub; clif_changechatstatus(cd); |