diff options
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; }; |