1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-28 12:17:46 +00:00

Merge branch 'action' into develop_c

This commit is contained in:
collett 2020-01-06 00:26:25 +09:00
commit 0414a3075d

View file

@ -393,8 +393,8 @@ void Action::Action::execute()
// ignore it otherwise (ogcds, etc.)
if( !m_actionData->preservesCombo )
{
// potential combo starter or correct combo from last action
if( ( !isComboAction() || isCorrectCombo() ) )
// potential combo starter or correct combo from last action, must hit something to progress combo
if( !m_hitActors.empty() && ( !isComboAction() || isCorrectCombo() ) )
{
m_pSource->setLastComboActionId( getId() );
}