v2.1.0: reduced the ACC penalty on the sickle and war scythe

This commit is contained in:
Evan Debenham
2023-05-18 12:01:00 -04:00
parent 11b140e5f3
commit e25c68047f
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ public class Sickle extends MeleeWeapon {
hitSoundPitch = 1f;
tier = 2;
ACC = 0.68f; //32% penalty to accuracy
ACC = 0.76f; //24% penalty to accuracy
}
@Override

View File

@@ -34,7 +34,7 @@ public class WarScythe extends MeleeWeapon {
hitSoundPitch = 0.9f;
tier = 5;
ACC = 0.8f; //20% penalty to accuracy
ACC = 0.85f; //15% penalty to accuracy
}
@Override