From 882178c20819e0de72a8ae0e58d2ff3f0d4e2c2b Mon Sep 17 00:00:00 2001 From: Misode Date: Wed, 27 Nov 2024 21:46:47 +0100 Subject: [PATCH] Fix #630 base attack damage amount --- src/app/components/ItemTooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/ItemTooltip.tsx b/src/app/components/ItemTooltip.tsx index 20b9b9c4..61fc185e 100644 --- a/src/app/components/ItemTooltip.tsx +++ b/src/app/components/ItemTooltip.tsx @@ -265,7 +265,7 @@ function AttributeModifiersTooltip({ data }: { data: NbtTag | undefined }) { const operation = MODIFIER_OPERATIONS.indexOf(e.getString('operation')) let absolute = false if (id.equals(Identifier.create('base_attack_damage'))) { - amount += 2 + amount += 1 absolute = true } else if (id.equals(Identifier.create('base_attack_speed'))) { amount += 4