diff options
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); } |