Skip to content

Commit 882178c

Browse files
committed
Fix #630 base attack damage amount
1 parent 794657d commit 882178c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/ItemTooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ function AttributeModifiersTooltip({ data }: { data: NbtTag | undefined }) {
265265
const operation = MODIFIER_OPERATIONS.indexOf(e.getString('operation'))
266266
let absolute = false
267267
if (id.equals(Identifier.create('base_attack_damage'))) {
268-
amount += 2
268+
amount += 1
269269
absolute = true
270270
} else if (id.equals(Identifier.create('base_attack_speed'))) {
271271
amount += 4

0 commit comments

Comments
 (0)