diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-12-28 23:00:59 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 23:00:59 -0600 |
commit | edf909be4da55a435bf81f96ffcbd156b2120562 (patch) | |
tree | 7bbce0d40ce8c714e793ef22f3a7c125f9ff3fbd /include/map.h | |
parent | 6512ebff67e163a5a6c0f5e19847e2a4dda19ad1 (diff) | |
parent | ea10f7b7bd6957312b9b0dfa371761c5936bc80a (diff) |
Merge pull request #91 from AnonymousRandomPerson/master
More item AI decomp
Diffstat (limited to 'include/map.h')
-rw-r--r-- | include/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/map.h b/include/map.h index 2989c6c..bb991ff 100644 --- a/include/map.h +++ b/include/map.h @@ -42,8 +42,8 @@ struct MapRoom enum TileType { TILE_TYPE_FLOOR = 1 << 0, - TILE_TYPE_UNK_1 = 1 << 1, - TILE_TYPE_LIQUID = 1 << 2, // Water or lava depending on the dungeon. + TILE_TYPE_LIQUID = 1 << 1, // Water or lava depending on the dungeon. + TILE_TYPE_UNK_2 = 1 << 2, TILE_TYPE_ROOM_EXIT = 1 << 3, TILE_TYPE_MAP_EDGE = 1 << 4, TILE_TYPE_SHOP = 1 << 5, |