highest ID of dynamicItem reduced to 1048575

Former-commit-id: b1e36d020a57aac497eff5d3db7142940f590fe4
Former-commit-id: c437e8447ba2a58fdc7dfd05f1ac80284f845702
This commit is contained in:
Song Minjae
2016-12-29 20:45:42 +09:00
parent 187dcdd0c1
commit eb43b016fe
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ object ItemCodex {
private val dynamicItemDescription = HashMap<Int, KVHashMap>()
val ITEM_TILE_MAX = GameWorld.TILES_SUPPORTED - 1 // 4095
val ITEM_COUNT_MAX = 16777216
val ITEM_COUNT_MAX = 1048576
val ITEM_DYNAMIC_MAX = ITEM_COUNT_MAX - 1
val ITEM_STATIC_MAX = 32767
val ITEM_DYNAMIC_MIN = ITEM_STATIC_MAX + 1