From 2366c68cf4a682d64f4286e83238d8acbef10601 Mon Sep 17 00:00:00 2001 From: geeilhan <107366005+geeilhan@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:15:40 +0100 Subject: [PATCH] Update comments --- src/data/move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/move.ts b/src/data/move.ts index 8f877fbf3b7..ecdf3f65e95 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -4956,7 +4956,7 @@ export class WaterSuperEffectTypeMultiplierAttr extends VariableMoveTypeMultipli } /** - * If move is of type electric or grass it already has super effectiveness against water types and multiplier does not need to recalculate its value. + * If move is of type electric it already has super effectiveness against water types and multiplier does not need to recalculate its value. */ if (user.getMoveType(move) !== Type.ELECTRIC) { multiplier.value *= 2 / effectivenessAgainstWater.value;