diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-08 17:33:24 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-08 17:33:24 +0000 |
commit | 62cf686313c8c25a3c78e67b82917fd56fa6e2a6 (patch) | |
tree | c26a1a6c395a8c424c4c1c29c8085f30e70e8900 /src/map/pc.h | |
parent | 3f355729f457c4138f78a71c5019a208f2597e3c (diff) | |
download | hercules-62cf686313c8c25a3c78e67b82917fd56fa6e2a6.tar.gz hercules-62cf686313c8c25a3c78e67b82917fd56fa6e2a6.tar.bz2 hercules-62cf686313c8c25a3c78e67b82917fd56fa6e2a6.tar.xz hercules-62cf686313c8c25a3c78e67b82917fd56fa6e2a6.zip |
- Increased max number of tries to find a random spot in maps to 1000 since some maps have so many non-walkable tiles it's hard to find one in just 100 tries.
- Reduced Stun duration of multiple skills to 3 secs. Skills affected: Meteor Storm, Land Mine, Bash (fatal blow), Throw Stone, NPC_LICK, Raid, shield Charge, Cart Termination.
- status_set_viewdata will remove the Wedding Option status when you set a class that is not wedding.
- Removed the Job_Novice range check in pcdb_checkid since it's causing warnings when checking versus vd->class_ (and when will we use a negative value class anyway?)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6518 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 9513bd176..6cf8ca0b2 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -61,7 +61,7 @@ enum { #define pc_stop_walking(sd, type) { if (sd->ud.walktimer!=-1) unit_stop_walking(&sd->bl, type); }
//Checks if the given class value corresponds to a player class. [Skotlex]
-#define pcdb_checkid(class_) ((class_ >= JOB_NOVICE && class_ <= JOB_XMAS) || (class_ >= JOB_NOVICE_HIGH && class_ <= JOB_SOUL_LINKER))
+#define pcdb_checkid(class_) (class_ <= JOB_XMAS || (class_ >= JOB_NOVICE_HIGH && class_ <= JOB_SOUL_LINKER))
int pc_isGM(struct map_session_data *sd);
int pc_iskiller(struct map_session_data *src, struct map_session_data *target); // [MouseJstr]
|