diff options
author | Emistry Haoyan <Equinox1991@gmail.com> | 2017-03-14 00:15:49 +0800 |
---|---|---|
committer | Emistry Haoyan <Equinox1991@gmail.com> | 2017-03-14 00:15:49 +0800 |
commit | 880ea659c9ec5241579281c8f9bff256d3d42eac (patch) | |
tree | f95e240db0325d101afdb38257d1ea884294b376 /src/map/clif.h | |
parent | 7b4d4fb92603ef1e622b52e777cd5ac1b7f97d55 (diff) | |
download | hercules-880ea659c9ec5241579281c8f9bff256d3d42eac.tar.gz hercules-880ea659c9ec5241579281c8f9bff256d3d42eac.tar.bz2 hercules-880ea659c9ec5241579281c8f9bff256d3d42eac.tar.xz hercules-880ea659c9ec5241579281c8f9bff256d3d42eac.zip |
Fixed MVP exp message issue for clients 2013-12-23cRagexe and newer
- Fixed MVP exp message issue clients 2013-12-23cRagexe and newer.
- Gravity remove packet MVP exp message
- Credit to https://github.com/rathena/rathena/commit/85749e84b91087960e868e30a7a052b0c0cdce5b
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index aefba5974..c3a42372a 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -65,6 +65,7 @@ struct view_data; #define MAX_ROULETTE_COLUMNS 9 /** client-defined value **/ #define RGB2BGR(c) (((c) & 0x0000FF) << 16 | ((c) & 0x00FF00) | ((c) & 0xFF0000) >> 16) +#define COLOR_CYAN 0x00ffffU #define COLOR_RED 0xff0000U #define COLOR_GREEN 0x00ff00U #define COLOR_WHITE 0xffffffU |