diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-02 15:54:27 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-02 15:54:27 +0000 |
commit | d918805022383bbf9c63f82c700f88e443ff7cd2 (patch) | |
tree | 41ac155389f08738d15bf786cd36bacce3b7cc56 /src/map/status.c | |
parent | 64d039f074c942a4265345e7ff832b4938d6381a (diff) | |
download | hercules-d918805022383bbf9c63f82c700f88e443ff7cd2.tar.gz hercules-d918805022383bbf9c63f82c700f88e443ff7cd2.tar.bz2 hercules-d918805022383bbf9c63f82c700f88e443ff7cd2.tar.xz hercules-d918805022383bbf9c63f82c700f88e443ff7cd2.zip |
Removed some long-unneccessary debug messages (from r1105).
Removed function skill_count_target() because it's a duplicate (see topic:169337).
Renamed skill_get_pl to skill_get_ele (because it retrieves element ids).
The block_list structure now uses the BL_ enums instead of 'unsigned char'.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11640 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 6919a47bb..4ae211098 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1112,7 +1112,7 @@ int status_check_skilluse(struct block_list *src, struct block_list *target, int hide_flag = flag?OPTION_HIDE:(OPTION_HIDE|OPTION_CLOAK|OPTION_CHASEWALK); //You cannot hide from ground skills. - if(skill_get_pl(skill_num,1) == ELE_EARTH) //TODO: Need Skill Lv here :/ + if(skill_get_ele(skill_num,1) == ELE_EARTH) //TODO: Need Skill Lv here :/ hide_flag &= ~OPTION_HIDE; switch (target->type) |