v3.0.1: fixed sniper's mark % damage bonus being loaded as an int
This commit is contained in:
@@ -75,7 +75,7 @@ public class SnipersMark extends FlavourBuff implements ActionIndicator.Action {
|
|||||||
public void restoreFromBundle( Bundle bundle ) {
|
public void restoreFromBundle( Bundle bundle ) {
|
||||||
super.restoreFromBundle( bundle );
|
super.restoreFromBundle( bundle );
|
||||||
object = bundle.getInt( OBJECT );
|
object = bundle.getInt( OBJECT );
|
||||||
percentDmgBonus = bundle.getInt( BONUS );
|
percentDmgBonus = bundle.getFloat( BONUS );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user