Fix memory leak in attack library

This commit is contained in:
2019-10-31 13:30:22 +01:00
parent 65f814b006
commit 163752a8ea

View File

@@ -13,6 +13,9 @@ namespace CreatureLib::Library {
AttackLibrary() = default;
~AttackLibrary(){
for (auto attack: _attacks){
delete attack.second;
}
_attacks.clear();
}