diff options
Diffstat (limited to 'source/game/items/StarConsumableItem.cpp')
-rw-r--r-- | source/game/items/StarConsumableItem.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/game/items/StarConsumableItem.cpp b/source/game/items/StarConsumableItem.cpp index 53729b1..83a06b9 100644 --- a/source/game/items/StarConsumableItem.cpp +++ b/source/game/items/StarConsumableItem.cpp @@ -35,8 +35,8 @@ List<Drawable> ConsumableItem::drawables() const { return drawables; } -void ConsumableItem::update(FireMode fireMode, bool shifting, HashSet<MoveControlType> const& moves) { - SwingableItem::update(fireMode, shifting, moves); +void ConsumableItem::update(float dt, FireMode fireMode, bool shifting, HashSet<MoveControlType> const& moves) { + SwingableItem::update(dt, fireMode, shifting, moves); if (entityMode() == EntityMode::Master) { if (m_consuming) |