diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-06 13:49:29 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-06 13:49:29 +0000 |
commit | 54f28419528e592b2d7628ce596fd49205be94d3 (patch) | |
tree | 75aade9d9b39b5efb29d65dfe2348fc235664784 /src/map/skill.h | |
parent | 63a3353ffbc81b3a7c761cdd7a3283a144cd3f87 (diff) | |
download | hercules-54f28419528e592b2d7628ce596fd49205be94d3.tar.gz hercules-54f28419528e592b2d7628ce596fd49205be94d3.tar.bz2 hercules-54f28419528e592b2d7628ce596fd49205be94d3.tar.xz hercules-54f28419528e592b2d7628ce596fd49205be94d3.zip |
- Modified @allstats to prevent negative/overflow issues.
- Fixed HP/SP requirements for WE_MALE/WE_FEMALE
- Fixed a typo in skill.h which fixes a compilation warning.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5925 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/skill.h')
-rw-r--r-- | src/map/skill.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/skill.h b/src/map/skill.h index b34f413b6..f485e3394 100644 --- a/src/map/skill.h +++ b/src/map/skill.h @@ -165,7 +165,7 @@ int skill_get_unit_target( int id ); int skill_tree_get_max( int id, int b_class ); // Celest
const char* skill_get_name( int id ); // [Skotlex]
-void skill_isammoy_type(TBL_PC *sd, int skill);
+int skill_isammotype(TBL_PC *sd, int skill);
int skill_castend_id( int tid, unsigned int tick, int id,int data );
int skill_castend_pos( int tid, unsigned int tick, int id,int data );
int skill_castend_map( struct map_session_data *sd,int skill_num, const char *map);
|