summaryrefslogtreecommitdiffstats
path: root/sigmod/Species.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-01-11 03:00:20 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-01-11 03:00:20 -0500
commit8a533ac53da953da7e826fd05dd46a688b287453 (patch)
treea92fde702007b5e94fca8076d56d4784c92b4086 /sigmod/Species.h
parent0b3c60d31b30d0ce66d5adde94aaccaaeb882117 (diff)
downloadsigen-8a533ac53da953da7e826fd05dd46a688b287453.tar.gz
sigen-8a533ac53da953da7e826fd05dd46a688b287453.tar.xz
sigen-8a533ac53da953da7e826fd05dd46a688b287453.zip
Fixed major flaw in Species (bool where int was supposed to be)
Diffstat (limited to 'sigmod/Species.h')
-rw-r--r--sigmod/Species.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sigmod/Species.h b/sigmod/Species.h
index 7adc375b..d5623f90 100644
--- a/sigmod/Species.h
+++ b/sigmod/Species.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2007-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -194,8 +194,8 @@ class SIGMOD_EXPORT Species : public Object
void clear();
QString m_name;
- QVarLengthArray<bool, ST_SpecialDefense - ST_HP + 1> m_baseStat;
- QVarLengthArray<bool, ST_SpecialDefense - ST_HP + 1> m_effortValue;
+ QVarLengthArray<int, ST_SpecialDefense - ST_HP + 1> m_baseStat;
+ QVarLengthArray<int, ST_SpecialDefense - ST_HP + 1> m_effortValue;
Style m_growth;
int m_experienceValue;
int m_catchValue;