You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cost = (base + modifier) * multiplier;
Negative multiplier is bug in those code.
Min cost should be 1 not 0, there need a check for it.
Integer multiplier seems useless in reducing materials by percentage.
The text was updated successfully, but these errors were encountered:
tytannial
changed the title
Multiplier for balance should be a non negative double not int
[1.7.10]Multiplier for balance should be a non negative double not int
Feb 26, 2017
tytannial
changed the title
[1.7.10]Multiplier for balance should be a non negative double not int
[1.7.10]Multiplier for balance should be a double not int
Feb 26, 2017
modifier = Math.max(modifier + Config.modifier, 0);
multiplier = Math.max(multiplier + Config.multiplier, 0);
cost = (base + modifier) * multiplier;
Negative multiplier is bug in those code.
Min cost should be 1 not 0, there need a check for it.
Integer multiplier seems useless in reducing materials by percentage.
The text was updated successfully, but these errors were encountered: