diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-04-25 19:17:03 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-04-25 23:11:29 -0600 |
commit | bba1a7e5a92f0df2ae879f0ea0cd064a25c915ab (patch) | |
tree | bfd9b23ad26a3e6d9f6b3cbf1e3de68b4875ff12 /src/statuseffect.cpp | |
parent | 5e75167f64473d645e40d7f6eb58eb1ef8f6cdea (diff) | |
download | mana-bba1a7e5a92f0df2ae879f0ea0cd064a25c915ab.tar.gz mana-bba1a7e5a92f0df2ae879f0ea0cd064a25c915ab.tar.bz2 mana-bba1a7e5a92f0df2ae879f0ea0cd064a25c915ab.tar.xz mana-bba1a7e5a92f0df2ae879f0ea0cd064a25c915ab.zip |
Fix resource errors when chaning servers
Reviewed-by: Freeyorp
Diffstat (limited to 'src/statuseffect.cpp')
-rw-r--r-- | src/statuseffect.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/statuseffect.cpp b/src/statuseffect.cpp index 66e8010d..49619f8a 100644 --- a/src/statuseffect.cpp +++ b/src/statuseffect.cpp @@ -169,6 +169,8 @@ void unloadMap(std::map<int, StatusEffect *> map) for (it = map.begin(); it != map.end(); it++) delete (*it).second; + + map.clear(); } void StatusEffect::unload() |