diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-22 01:31:52 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-03-22 01:31:52 +0000 |
commit | 1ab8da3d02f841c0e74af10ecc60b63d5c13f5e2 (patch) | |
tree | dcd5d83f11c5465b57cc1fb5d2ea80b5c35f40da /src/map/pc.h | |
parent | fea72d3f3c14ce84c86d347ed66339bb50e581f7 (diff) | |
download | hercules-1ab8da3d02f841c0e74af10ecc60b63d5c13f5e2.tar.gz hercules-1ab8da3d02f841c0e74af10ecc60b63d5c13f5e2.tar.bz2 hercules-1ab8da3d02f841c0e74af10ecc60b63d5c13f5e2.tar.xz hercules-1ab8da3d02f841c0e74af10ecc60b63d5c13f5e2.zip |
Fixed bugreport:5468 Swordsman upper classes and ranger are no longer allowed to use reins of mount (new mounts)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15746 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 1a3b54ac2..a035092b5 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -621,6 +621,15 @@ enum e_pc_permission { #define pc_iswug(sd) ( (sd)->sc.option&OPTION_WUG ) #define pc_isridingwug(sd) ( (sd)->sc.option&OPTION_WUGRIDER ) +/** + * New Mounts -- can this damn job not + **/ +#define pc_cant_newmount(sd) \ + ( \ + ( (sd)->class_&MAPID_THIRDMASK) == MAPID_RANGER || \ + ( ((sd)->class_&MAPID_BASEMASK) == MAPID_SWORDMAN && (sd)->status.class_ != JOB_SWORDMAN ) \ + ) + #define pc_stop_walking(sd, type) unit_stop_walking(&(sd)->bl, type) #define pc_stop_attack(sd) unit_stop_attack(&(sd)->bl) |