diff --git a/src/world/Action/EventAction.h b/src/world/Action/EventAction.h index 6c997450..29897cd3 100644 --- a/src/world/Action/EventAction.h +++ b/src/world/Action/EventAction.h @@ -22,7 +22,7 @@ public: void execute() override; - void interrupt( Common::ActionInterruptType type = Common::ActionInterruptType::None) override; + void interrupt( Common::ActionInterruptType type = Common::ActionInterruptType::RegularInterrupt ) override; private: uint32_t m_eventId; diff --git a/src/world/Action/ItemAction.h b/src/world/Action/ItemAction.h index 919df12f..4e79be9b 100644 --- a/src/world/Action/ItemAction.h +++ b/src/world/Action/ItemAction.h @@ -22,7 +22,7 @@ namespace Sapphire::World::Action void execute() override; - void interrupt( Common::ActionInterruptType type = Common::ActionInterruptType::None ) override; + void interrupt( Common::ActionInterruptType type = Common::ActionInterruptType::RegularInterrupt ) override; private: void handleVFXItem();