summaryrefslogtreecommitdiffstats
path: root/pokemod/PokemonMove.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/PokemonMove.cpp')
-rw-r--r--pokemod/PokemonMove.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/pokemod/PokemonMove.cpp b/pokemod/PokemonMove.cpp
index 032c65a5..c5a1c059 100644
--- a/pokemod/PokemonMove.cpp
+++ b/pokemod/PokemonMove.cpp
@@ -68,32 +68,6 @@ void PokeGen::PokeMod::PokemonMove::Validate()
LogValidateOver("PokemonMove", id, isValid, GetMoveString());
}
-#ifdef PG_DEBUG_WINDOW
-void PokeGen::PokeMod::PokemonMove::Validate(const wxListBox &output)
-{
- LogValidateStart("PokemonMove", id, GetMoveString());
- if (!pokemod->GetMove(move))
- {
- LogVarNotValid("PokemonMove", id, "move");
- output.Append(ConsoleLogVarNotValid("PokemonMove", id, "move"));
- isValid = false;
- }
- if (level < pokemod->GetMaxLevel())
- {
- LogVarNotValid("PokemonMove", id, "level", GetMoveString());
- output.Append(ConsoleLogVarNotValid("PokemonMove", id, "level", GetMoveString()));
- isValid = false;
- }
- if (wild < pokemod->GetMaxLevel())
- {
- LogVarNotValid("PokemonMove", id, "wild", GetMoveString());
- output.Append(ConsoleLogVarNotValid("PokemonMove", id, "wild", GetMoveString()));
- isValid = false;
- }
- LogValidateOver("PokemonMove", id, isValid, GetMoveString());
-}
-#endif
-
void PokeGen::PokeMod::PokemonMove::ImportIni(Ini &ini, const unsigned _id)
{
LogImportStart("PokemonMove");