summaryrefslogtreecommitdiff
path: root/db/re/item_db.conf
diff options
context:
space:
mode:
Diffstat (limited to 'db/re/item_db.conf')
-rw-r--r--db/re/item_db.conf8
1 files changed, 4 insertions, 4 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index f77785f1e..8cbb86427 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -4851,10 +4851,10 @@ item_db: (
// Bow: Subtype W_BOW (ITEMINFO_SUBTYPE)
// Arrow: EQP_AMMO
// Check if you are using bow and arrows
- if (
- (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) == W_BOW) &&
- (getiteminfo(getequipid(EQI_AMMO), ITEMINFO_LOC) == EQP_AMMO)
- ) {
+ debugmes "Quiver info! Bow Getequip id is "+getequipid(EQI_HAND_R);
+ debugmes "Quiver info! Item subtype is "+getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE);
+ debugmes "Quiver info! Target subtype: "+W_BOW;
+ if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) == W_BOW) {
bonus bHitRate,10;
bonus bAddMaxWeight,100;
}