1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 00:27:44 +00:00

fix event item action not executing without cast time

This commit is contained in:
collett 2023-06-01 02:05:39 +09:00
parent c53b2f3c34
commit c1aea6298e

View file

@ -67,4 +67,6 @@ void EventItemAction::execute()
void EventItemAction::start()
{
m_startTime = Common::Util::getTimeMs();
if( !hasCastTime() )
execute();
}