From c391fb39f8bacfda3804ffc380d54ce7c56730cf Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Fri, 18 Sep 2020 20:13:27 +0100 Subject: [PATCH] Fixed Soak affecting the user rather than the target --- Data/Scripts/012_Battle/002_Move/005_Move_Effects_000-07F.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Scripts/012_Battle/002_Move/005_Move_Effects_000-07F.rb b/Data/Scripts/012_Battle/002_Move/005_Move_Effects_000-07F.rb index 2e474c441..562007bad 100644 --- a/Data/Scripts/012_Battle/002_Move/005_Move_Effects_000-07F.rb +++ b/Data/Scripts/012_Battle/002_Move/005_Move_Effects_000-07F.rb @@ -1947,7 +1947,7 @@ class PokeBattle_Move_061 < PokeBattle_Move def pbEffectAgainstTarget(user,target) newType = getConst(PBTypes,:WATER) - user.pbChangeTypes(newType) + target.pbChangeTypes(newType) typeName = PBTypes.getName(newType) @battle.pbDisplay(_INTL("{1} transformed into the {2} type!",target.pbThis,typeName)) end