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/map.h | |
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/map.h')
-rw-r--r-- | src/map/map.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/map.h b/src/map/map.h index cc2b54b0c..c4526bcb6 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -232,8 +232,8 @@ struct block_list { struct block_list *next,*prev; int id; short m,x,y; - unsigned char type; - unsigned char subtype; + enum bl_type type; + enum bl_subtype subtype; }; struct walkpath_data { @@ -253,7 +253,7 @@ struct skill_timerskill { int map; short x,y; short skill_id,skill_lv; - int type; + int type; // a BF_ type (NOTE: some places use this as general-purpose storage...) int flag; }; |