From 79f5e5d4aaf558bb38c7f0fffdc1856af4a5706e Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sat, 18 Jun 2022 20:48:27 +0100 Subject: [PATCH] Fixed mistake in individual trainer editor --- Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb index d90c40762..52a7ec135 100644 --- a/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb +++ b/Data/Scripts/020_Debug/001_Editor screens/001_EditorScreens.rb @@ -692,7 +692,7 @@ module TrainerPokemonProperty } moves = [] Pokemon::MAX_MOVES.times do |i| - moves.push(oldsetting[7 + i]) + moves.push(oldsetting[8 + i]) end moves.uniq! moves.compact!