summaryrefslogtreecommitdiffstats
path: root/pokemod/Ability.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-02-23 00:30:00 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-02-23 00:30:00 +0000
commit9cd7f4656b01cfb243433e1063c0339b2b96bbd4 (patch)
treeb3faeacc636f956013e2972b950a2c1b9cd85f59 /pokemod/Ability.cpp
parent0ee1ea1cef9eec7e0187aa9f8f2dc291775e8864 (diff)
downloadsigen-9cd7f4656b01cfb243433e1063c0339b2b96bbd4.tar.gz
sigen-9cd7f4656b01cfb243433e1063c0339b2b96bbd4.tar.xz
sigen-9cd7f4656b01cfb243433e1063c0339b2b96bbd4.zip
[FIX] Changelog/SVN desynchronization fixed
[FIX] skins UI file cleaned up [FIX] ImageCache no longer uses force argument [FIX] operator= now correctly copies subdata from rhs (instead of reassigning ID numbers) [FIX] Pokemod can now be copied [FIX] Pokemod skin calls cleaned up [ADD] PokemodUI.{h, cpp} [ADD] SkinsUI.{h, cpp} git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@70 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Ability.cpp')
-rw-r--r--pokemod/Ability.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemod/Ability.cpp b/pokemod/Ability.cpp
index dbcd657d..234d2dae 100644
--- a/pokemod/Ability.cpp
+++ b/pokemod/Ability.cpp
@@ -202,6 +202,6 @@ Ability& Ability::operator=(const Ability& rhs)
name = rhs.name;
effects.clear();
for (int i = 0; i < rhs.getEffectCount(); ++i)
- newEffect(*rhs.getEffect(i));
+ effects.append(AbilityEffect(pokemod, *rhs.getEffect(i), rhs.getEffect(i)->getId()));
return *this;
}