remove unnecessary space

This commit is contained in:
Matthew Ross 2024-05-10 18:51:59 -07:00
parent d259748953
commit ee486cb7a3

View File

@ -1403,7 +1403,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
if (!isTypeImmune) {
damage.value = Math.ceil(((((2 * source.level / 5 + 2) * power.value * sourceAtk.value / targetDef.value) / 50) + 2) * stabMultiplier.value * typeMultiplier.value * arenaAttackTypeMultiplier.value * screenMultiplier.value * ((this.scene.randBattleSeedInt(15) + 85) / 100) * criticalMultiplier.value);
if (move.id !== Moves.FACADE && isPhysical && source.status && source.status.effect === StatusEffect.BURN ) {
if (move.id !== Moves.FACADE && isPhysical && source.status && source.status.effect === StatusEffect.BURN) {
const burnDamageReductionCancelled = new Utils.BooleanHolder(false);
applyAbAttrs(BypassBurnDamageReductionAbAttr, source, burnDamageReductionCancelled);
if (!burnDamageReductionCancelled.value)