mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-27 05:36:28 -05:00
Stringer Max Booyah Damage Fix (#2090)
This commit is contained in:
@@ -258,9 +258,18 @@ export function calculateDamage({
|
||||
}
|
||||
|
||||
const otherDamage = () => {
|
||||
//[Special Case] Booyah ignores Tri-Stringer's otherDamage at full charge. In-game bug
|
||||
if (
|
||||
[7010, 7011].includes(anyWeapon.id) &&
|
||||
receiver === "NiceBall_Armor"
|
||||
) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
const result = filteredDamages.find(
|
||||
(damage) => damage.type === toCombine?.combineWith,
|
||||
)?.value;
|
||||
|
||||
invariant(result);
|
||||
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user