summaryrefslogtreecommitdiffstats
path: root/pokemod/Nature.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/Nature.cpp')
-rw-r--r--pokemod/Nature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemod/Nature.cpp b/pokemod/Nature.cpp
index 5dfdad69..873d720c 100644
--- a/pokemod/Nature.cpp
+++ b/pokemod/Nature.cpp
@@ -108,7 +108,7 @@ QString Nature::name() const
Fraction Nature::stat(const int stat) const throw(BoundsException)
{
- if ((pokemod()->rules()->specialSplit() ? Pokemod::ST_End_GSC : Pokemod::ST_End_RBY) <= stat)
+ if (Pokemod::ST_End_GSC <= stat)
warning<BoundsException>("stat");
return m_stat[stat];
}