diff --git a/2.5DHero/2.5DHero/CurrentVersion.dat b/2.5DHero/2.5DHero/CurrentVersion.dat deleted file mode 100644 index bc27f0b4c..000000000 --- a/2.5DHero/2.5DHero/CurrentVersion.dat +++ /dev/null @@ -1 +0,0 @@ -0.54.1a \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Player/Player.vb b/2.5DHero/2.5DHero/Player/Player.vb index 52a210b72..f9f3d77b6 100644 --- a/2.5DHero/2.5DHero/Player/Player.vb +++ b/2.5DHero/2.5DHero/Player/Player.vb @@ -633,7 +633,7 @@ If Not ActionScript.IsRegistered("PokemonIndev0542Update") Then ' Check Party Pokemon. For Each Pokemon As Pokemon In Pokemons - If Pokemon.CatchTrainerName = Core.Player.Name AndAlso Pokemon.OT <> GameJoltSave.GameJoltID Then + If String.Equals(Pokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso Pokemon.OT <> GameJoltSave.GameJoltID Then Pokemon.OT = GameJoltSave.GameJoltID End If Next @@ -648,7 +648,7 @@ Dim TempString As String = item.Remove(item.IndexOf("{")) Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) - If TempPokemon.CatchTrainerName = Core.Player.Name AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then + If String.Equals(TempPokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then TempPokemon.OT = GameJoltSave.GameJoltID End If @@ -669,7 +669,7 @@ Dim TempString As String = ItemData.Remove(item.IndexOf("{")) Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) - If TempPokemon.CatchTrainerName = Core.Player.Name AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then + If String.Equals(TempPokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then TempPokemon.OT = GameJoltSave.GameJoltID End If diff --git a/2.5DHero/2.5DHero/Updater.exe b/2.5DHero/2.5DHero/Updater.exe deleted file mode 100644 index 444016e4a..000000000 Binary files a/2.5DHero/2.5DHero/Updater.exe and /dev/null differ diff --git a/_config.yml b/_config.yml deleted file mode 100644 index c4192631f..000000000 --- a/_config.yml +++ /dev/null @@ -1 +0,0 @@ -theme: jekyll-theme-cayman \ No newline at end of file