We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68da6b9 commit 16806a9Copy full SHA for 16806a9
CHANGELOG.md
@@ -30,7 +30,8 @@
30
31
# Work In Progress
32
33
-Nothing so far!
+### Fixes
34
+- Fixed many broadswords not getting their item overhaul when Calamity is enabled.
35
36
# 5.0 BETA 13
37
Common/Melee/_Overhauls/Broadsword.cs
@@ -45,7 +45,7 @@ public override bool ShouldApplyItemOverhaul(Item item)
45
return false;
46
}
47
48
- if (item.DamageType != DamageClass.Melee) {
+ if (!item.DamageType.CountsAsClass(DamageClass.Melee)) {
49
50
51
0 commit comments