Show
Ignore:
Timestamp:
11/19/08 13:26:44 (17 years ago)
Author:
yumileroy
Message:

[svn] * Various small changes here and there.
* Implementing MangChat? IRC system.
* Added new config option, MAX_WHO, can be used to set the limit of characters being sent in a /who request from client.

Original author: XTZGZoReX
Date: 2008-10-12 14:03:38-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/MiscHandler.cpp

    r37 r39  
    255255        data << uint32( pzoneid );                          // player zone id 
    256256 
    257         // 49 is maximum player count sent to client 
    258         if ((++clientcount) == 49) 
     257        // 49 is maximum player count sent to client - can be overriden 
     258        // through config, but is unstable 
     259        if ((++clientcount) == sWorld.getConfig(CONFIG_MAX_WHO)) 
    259260            break; 
    260261    }