summaryrefslogtreecommitdiffstats
path: root/sigmod
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-13 03:35:02 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-13 03:35:02 -0500
commit1ecc4dc56dc77149f827c0bbf42d051049298b90 (patch)
treeded30a457ddb355806498e025301ce027ec65793 /sigmod
parentbe7dd2db903c64827752cf162a18483c05b73e8c (diff)
downloadsigen-1ecc4dc56dc77149f827c0bbf42d051049298b90.tar.gz
sigen-1ecc4dc56dc77149f827c0bbf42d051049298b90.tar.xz
sigen-1ecc4dc56dc77149f827c0bbf42d051049298b90.zip
Missed a member variable in the initializer list for Species ctor
Diffstat (limited to 'sigmod')
-rw-r--r--sigmod/Species.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/sigmod/Species.cpp b/sigmod/Species.cpp
index 1da1b26b..5ab16206 100644
--- a/sigmod/Species.cpp
+++ b/sigmod/Species.cpp
@@ -43,6 +43,7 @@ Sigmod::Species::Species(const Sigmod* parent, const int id) :
m_baseStat(ST_SpecialDefense - ST_HP + 1),
m_effortValue(ST_SpecialDefense - ST_HP + 1),
m_growth(Normal),
+ m_experienceValue(0),
m_catchValue(0),
m_maxHoldWeight(0),
m_runChance(1, 1),