mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 13:44:59 +00:00
Fixed typo in previous commit
This commit is contained in:
@@ -327,7 +327,7 @@ class PokeBattle_Move
|
|||||||
end
|
end
|
||||||
# Mud Sport
|
# Mud Sport
|
||||||
if type == :ELECTRIC
|
if type == :ELECTRIC
|
||||||
if @Battle.allBattlers.any? { |b| b.effects[PBEffects::MudSport] }
|
if @battle.allBattlers.any? { |b| b.effects[PBEffects::MudSport] }
|
||||||
multipliers[:base_damage_multiplier] /= 3
|
multipliers[:base_damage_multiplier] /= 3
|
||||||
end
|
end
|
||||||
if @battle.field.effects[PBEffects::MudSportField]>0
|
if @battle.field.effects[PBEffects::MudSportField]>0
|
||||||
@@ -336,7 +336,7 @@ class PokeBattle_Move
|
|||||||
end
|
end
|
||||||
# Water Sport
|
# Water Sport
|
||||||
if type == :FIRE
|
if type == :FIRE
|
||||||
if @Battle.allBattlers.any? { |b| b.effects[PBEffects::WaterSport] }
|
if @battle.allBattlers.any? { |b| b.effects[PBEffects::WaterSport] }
|
||||||
multipliers[:base_damage_multiplier] /= 3
|
multipliers[:base_damage_multiplier] /= 3
|
||||||
end
|
end
|
||||||
if @battle.field.effects[PBEffects::WaterSportField]>0
|
if @battle.field.effects[PBEffects::WaterSportField]>0
|
||||||
|
|||||||
Reference in New Issue
Block a user