diff options
author | Haru <haru@dotalux.com> | 2017-08-22 01:23:12 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2017-09-17 17:49:07 +0200 |
commit | dbf92ff5c3c9085e360a3d91f30a8d4e61639641 (patch) | |
tree | 1d17947524899e69aef0856510a01d80c6886f18 /db | |
parent | 37756b5d54b5ff19a20fd1ada298f6026b9d8114 (diff) | |
download | hercules-dbf92ff5c3c9085e360a3d91f30a8d4e61639641.tar.gz hercules-dbf92ff5c3c9085e360a3d91f30a8d4e61639641.tar.bz2 hercules-dbf92ff5c3c9085e360a3d91f30a8d4e61639641.tar.xz hercules-dbf92ff5c3c9085e360a3d91f30a8d4e61639641.zip |
Replace the recurring 'Loc: 5120' value in the item_db with a bitmask array
Equivalent: `["EQP_COSTUME_HEAD_TOP", "EQP_COSTUME_HEAD_LOW"]`
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'db')
-rw-r--r-- | db/pre-re/item_db.conf | 2 | ||||
-rw-r--r-- | db/re/item_db.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index 604482cfd..0d3097e6e 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -94446,7 +94446,7 @@ item_db: ( Name: "T Spinx Helm" Type: "IT_ARMOR" Slots: 1 - Loc: 5120 + Loc: ["EQP_COSTUME_HEAD_TOP", "EQP_COSTUME_HEAD_LOW"] Refine: false ViewSprite: 137 }, diff --git a/db/re/item_db.conf b/db/re/item_db.conf index c299563b0..bee209aa8 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -138041,7 +138041,7 @@ item_db: ( Name: "Costume Sphinx Hat" Type: "IT_ARMOR" Slots: 1 - Loc: 5120 + Loc: ["EQP_COSTUME_HEAD_TOP", "EQP_COSTUME_HEAD_LOW"] Refine: false ViewSprite: 137 }, |