diff options
author | Haru <haru@dotalux.com> | 2014-01-21 12:34:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-01-21 12:34:46 +0100 |
commit | 9701fe324412112c6288afbc956b299f2b9cc779 (patch) | |
tree | a8e383e877137567d50b431f564a21700526b173 /src | |
parent | 284a1631b40f442e058dabd9fd31301b9e50e71b (diff) | |
download | hercules-9701fe324412112c6288afbc956b299f2b9cc779.tar.gz hercules-9701fe324412112c6288afbc956b299f2b9cc779.tar.bz2 hercules-9701fe324412112c6288afbc956b299f2b9cc779.tar.xz hercules-9701fe324412112c6288afbc956b299f2b9cc779.zip |
Fixed --disable-packetver-re / --enable-packetver-re in ./configure
- Follow-up to c50e094dff1898badd4136d9cdeb7318c803cb61
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/common/mmo.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 670c2f7f7..573962601 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -51,9 +51,11 @@ #define PACKETVER 20131223 #endif // PACKETVER -#ifndef DISABLE_PACKETVER_RE - //Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE). - //#define PACKETVER_RE +//Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE). +//#define ENABLE_PACKETVER_RE +#ifdef ENABLE_PACKETVER_RE + #define PACKETVER_RE + #undef ENABLE_PACKETVER_RE #endif // DISABLE_PACKETVER_RE // Client support for experimental RagexeRE UI present in 2012-04-10 and 2012-04-18 |