Skip to content

Commit

Permalink
Merge pull request #41 from ManasMods/1.19.2/minh
Browse files Browse the repository at this point in the history
Critical Chance Event bugged
  • Loading branch information
Charismara authored Sep 23, 2024
2 parents 8ad104a + fd48f9c commit 47003a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ forgeVersion=43.3.5
# Parchment Version
parchmentVersion=2022.11.27
# Mod Information see https://mcforge.readthedocs.io/en/1.18.x/gettingstarted/versioning/#examples
modVersion=2.1.3.9
modVersion=2.1.4.0
modId=manascore
# Mixin Extras
mixinExtrasVersion=0.3.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class CriticalChanceEvent extends LivingEvent {
public CriticalChanceEvent(LivingEntity attacker, Entity target, float damageModifier, double critChance) {
super(attacker);
this.target = target;
this.oldDamageModifier = damageModifier;
this.critChance = critChance;
this.damageModifier = damageModifier;
this.oldDamageModifier = damageModifier;
}
}

0 comments on commit 47003a9

Please sign in to comment.