summaryrefslogtreecommitdiff
path: root/src/map/pc.h
diff options
context:
space:
mode:
authorTaylor Locke <kisuka@kisuka.com>2014-10-18 01:22:28 -0700
committerTaylor Locke <kisuka@kisuka.com>2014-10-18 01:32:57 -0700
commit4ac673941714032ada6d26fb60936ec510bbe496 (patch)
tree21e0aa8b626640428d7554a30762b8392be0ef1e /src/map/pc.h
parentcc8dfc2f45d0c5405cc628393e846e94e1e7a812 (diff)
downloadhercules-4ac673941714032ada6d26fb60936ec510bbe496.tar.gz
hercules-4ac673941714032ada6d26fb60936ec510bbe496.tar.bz2
hercules-4ac673941714032ada6d26fb60936ec510bbe496.tar.xz
hercules-4ac673941714032ada6d26fb60936ec510bbe496.zip
Some Quality of Life Changes
checkquest deprecated; Use questprogress instead for a more logical quest log checking command. getbrokencount command added to get amount of broken equipment. setdragon and setmadogear deprecated; use setriding instead. setriding now handles all combat mounts.
Diffstat (limited to 'src/map/pc.h')
-rw-r--r--src/map/pc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.h b/src/map/pc.h
index c36704b4f..6159a8f26 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 )
+#define pc_isriding(sd) ( (sd)->sc.option&(OPTION_RIDING|OPTION_DRAGON|OPTION_WUGRIDER|OPTION_MADOGEAR) )
#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 )