diff options
Diffstat (limited to 'source/game/items/StarLiquidItem.cpp')
-rw-r--r-- | source/game/items/StarLiquidItem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/game/items/StarLiquidItem.cpp b/source/game/items/StarLiquidItem.cpp index c29f58e..08e202f 100644 --- a/source/game/items/StarLiquidItem.cpp +++ b/source/game/items/StarLiquidItem.cpp @@ -30,9 +30,9 @@ void LiquidItem::init(ToolUserEntity* owner, ToolHand hand) { BeamItem::init(owner, hand); } -void LiquidItem::update(FireMode fireMode, bool shifting, HashSet<MoveControlType> const& moves) { - FireableItem::update(fireMode, shifting, moves); - BeamItem::update(fireMode, shifting, moves); +void LiquidItem::update(float dt, FireMode fireMode, bool shifting, HashSet<MoveControlType> const& moves) { + FireableItem::update(dt, fireMode, shifting, moves); + BeamItem::update(dt, fireMode, shifting, moves); if (shifting || !multiplaceEnabled()) setEnd(BeamItem::EndType::Tile); else |