diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-29 18:25:01 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-29 18:37:26 -0400 |
commit | 738c3c59a03135f2adeed3804c5a45faf441c947 (patch) | |
tree | 83a533c5a32807bea05ccd55e0a08edb3847c4ef /src/inventory.cpp | |
parent | 9e540db7d6492168cadcafddbf145ffdd7b21981 (diff) |
added gif support
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 495526a..95ab523 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -78,6 +78,8 @@ void InventorySystem::loadItems(void) { attack.range = atk->StrAttribute("range"); attack.vel = atk->StrAttribute("velocity"); attack.accel = atk->StrAttribute("accel"); + if (atk->Attribute("effect") != nullptr) + attack.effect.appendGIF(atk->StrAttribute("effect")); attackList.emplace(item.name, attack); } |