From ffb1a834949349346dd6fedd0177f0fff9d854d4 Mon Sep 17 00:00:00 2001 From: collett Date: Tue, 4 Feb 2020 21:59:14 +0900 Subject: [PATCH] fix --- src/world/Action/EventAction.h | 2 +- src/world/Action/ItemAction.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();