v3.0.1: fixed sniper's mark % damage bonus being loaded as an int

This commit is contained in:
Evan Debenham
2025-03-05 16:29:13 -05:00
parent 3e4a2f057e
commit 77e648cf8b

View File

@@ -75,7 +75,7 @@ public class SnipersMark extends FlavourBuff implements ActionIndicator.Action {
public void restoreFromBundle( Bundle bundle ) {
super.restoreFromBundle( bundle );
object = bundle.getInt( OBJECT );
percentDmgBonus = bundle.getInt( BONUS );
percentDmgBonus = bundle.getFloat( BONUS );
}
@Override