Revision 39, 393 bytes
(checked in by yumileroy, 17 years ago)
|
[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
|
Rev | Line | |
---|
[39] | 1 | #ifndef MC_CONFIG_H |
---|
| 2 | #define MC_CONFIG_H |
---|
| 3 | |
---|
| 4 | #include "../framework/Platform/CompilerDefs.h" |
---|
| 5 | |
---|
| 6 | // Format is YYYYMMDDRR where RR is the change in the conf file |
---|
| 7 | // for that day. |
---|
| 8 | #define MANGCHAT_CONF_VERSION 2008011901 |
---|
| 9 | |
---|
| 10 | #if PLATFORM == PLATFORM_WINDOWS |
---|
| 11 | #define _MANGCHAT_CONFIG "trinitycore.conf" |
---|
| 12 | #else |
---|
| 13 | #define _MANGCHAT_CONFIG "@sysconfdir@/trinitycore.conf" |
---|
| 14 | #endif |
---|
| 15 | |
---|
| 16 | #endif |
---|