diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-09-07 03:01:46 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-09-07 03:01:46 +0000 |
| commit | 48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69 (patch) | |
| tree | 0c8e09eec981de47c5aa0f49601484bcaabbbbc7 /sigscript/NatureWrapper.cpp | |
| parent | fef5e045060aff28477751c4115d346a95425c0c (diff) | |
| download | sigen-48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69.tar.gz sigen-48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69.tar.xz sigen-48f9e57b1638ba047ca2dcd6d3251ee90bf9ef69.zip | |
[FIX] Spelling mistake in sigscript classes
[FIX] Fixed a bug in the Growth enum in Species
[FIX] Arena functionality is getting there
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@252 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigscript/NatureWrapper.cpp')
| -rw-r--r-- | sigscript/NatureWrapper.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sigscript/NatureWrapper.cpp b/sigscript/NatureWrapper.cpp index 49ca54a3..16e0f772 100644 --- a/sigscript/NatureWrapper.cpp +++ b/sigscript/NatureWrapper.cpp @@ -23,9 +23,9 @@ Sigscript::NatureWrapper* Sigscript::NatureWrapper::create(const Sigmod::Nature* nature, SigmodWrapper* parent) { - if (!m_instances.contains(Signiture(parent, nature->id()))) - m_instances[Signiture(parent, nature->id())] = new NatureWrapper(nature, parent); - return qobject_cast<NatureWrapper*>(m_instances[Signiture(parent, nature->id())]); + if (!m_instances.contains(Signature(parent, nature->id()))) + m_instances[Signature(parent, nature->id())] = new NatureWrapper(nature, parent); + return qobject_cast<NatureWrapper*>(m_instances[Signature(parent, nature->id())]); } Sigscript::NatureWrapper::NatureWrapper(const Sigmod::Nature* nature, SigmodWrapper* parent) : |
