diff options
author | Haru <haru@dotalux.com> | 2014-10-18 20:16:14 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-10-18 20:17:24 +0200 |
commit | 243f4a871690f53cb9c33406be0b00f9045fcec0 (patch) | |
tree | 8fffe8730fe9553a0986f42d0c46f181757b4bfa /src/map/pc.h | |
parent | 472bf156f9e84ed2bc22b0728f3e1df972b9d3b3 (diff) | |
download | hercules-243f4a871690f53cb9c33406be0b00f9045fcec0.tar.gz hercules-243f4a871690f53cb9c33406be0b00f9045fcec0.tar.bz2 hercules-243f4a871690f53cb9c33406be0b00f9045fcec0.tar.xz hercules-243f4a871690f53cb9c33406be0b00f9045fcec0.zip |
Revert "Some Quality of Life Changes"
- This reverts commit 4ac673941714032ada6d26fb60936ec510bbe496.
- The commit breaks some legacy code. It'll be pushed again once some
things are fixed.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 6159a8f26..c36704b4f 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -589,7 +589,7 @@ struct map_session_data { #endif #define pc_isfalcon(sd) ( (sd)->sc.option&OPTION_FALCON ) -#define pc_isriding(sd) ( (sd)->sc.option&(OPTION_RIDING|OPTION_DRAGON|OPTION_WUGRIDER|OPTION_MADOGEAR) ) +#define pc_isriding(sd) ( (sd)->sc.option&OPTION_RIDING ) #define pc_isinvisible(sd) ( (sd)->sc.option&OPTION_INVISIBLE ) #define pc_is50overweight(sd) ( (sd)->weight*100 >= (sd)->max_weight*battle->bc->natural_heal_weight_rate ) #define pc_is90overweight(sd) ( (sd)->weight*10 >= (sd)->max_weight*9 ) |