mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-28 06:08:13 -05:00
Fix Big Bubbler HP
This commit is contained in:
@@ -1093,8 +1093,8 @@ function specialFieldHp(
|
||||
});
|
||||
|
||||
return {
|
||||
baseValue: roundToTwoDecimalPlaces(baseEffect / 100),
|
||||
value: roundToTwoDecimalPlaces(effect / 100),
|
||||
baseValue: Math.round(baseEffect / 10),
|
||||
value: Math.round(effect / 10),
|
||||
modifiedBy: SPECIAL_FIELD_HP_KEY,
|
||||
};
|
||||
}
|
||||
@@ -1117,8 +1117,8 @@ function specialDeviceHp(
|
||||
});
|
||||
|
||||
return {
|
||||
baseValue: roundToTwoDecimalPlaces(baseEffect / 100),
|
||||
value: roundToTwoDecimalPlaces(effect / 100),
|
||||
baseValue: Math.round(baseEffect / 10),
|
||||
value: Math.round(effect / 10),
|
||||
modifiedBy: SPECIAL_DEVICE_HP_KEY,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user