git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@102 54d463be-8e91-2dee-dedb-b68131a5f0ec

This commit is contained in:
codemaster 2004-11-10 21:37:58 +00:00
parent aa2c330841
commit e971c16730

View File

@ -82,6 +82,11 @@ int chat_joinchat(struct map_session_data *sd,int chatid,char* pass)
clif_joinchatfail(sd,1); clif_joinchatfail(sd,1);
return 0; return 0;
} }
if(chatid == sd->chatID) //Double Chat fix by Alex14, thx CHaNGeTe
{
clif_joinchatfail(sd,1);
return 0;
}
cd->usersd[cd->users] = sd; cd->usersd[cd->users] = sd;
cd->users++; cd->users++;