mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-25 19:17:45 +00:00
require combo
This commit is contained in:
parent
e7c44ccff7
commit
08a0556b36
3 changed files with 9 additions and 0 deletions
|
@ -17,6 +17,9 @@ public:
|
|||
|
||||
void onExecute( Sapphire::World::Action::Action& action ) override
|
||||
{
|
||||
if( !action.isCorrectCombo() )
|
||||
return;
|
||||
|
||||
auto pPlayer = action.getSourceChara()->getAsPlayer();
|
||||
assert( pPlayer );
|
||||
uint8_t ib = pPlayer->gaugeWarGetIb();
|
||||
|
|
|
@ -17,6 +17,9 @@ public:
|
|||
|
||||
void onExecute( Sapphire::World::Action::Action& action ) override
|
||||
{
|
||||
if( !action.isCorrectCombo() )
|
||||
return;
|
||||
|
||||
auto pPlayer = action.getSourceChara()->getAsPlayer();
|
||||
assert( pPlayer );
|
||||
uint8_t ib = pPlayer->gaugeWarGetIb();
|
||||
|
|
|
@ -17,6 +17,9 @@ public:
|
|||
|
||||
void onExecute( Sapphire::World::Action::Action& action ) override
|
||||
{
|
||||
if( !action.isCorrectCombo() )
|
||||
return;
|
||||
|
||||
auto pPlayer = action.getSourceChara()->getAsPlayer();
|
||||
assert( pPlayer );
|
||||
uint8_t ib = pPlayer->gaugeWarGetIb();
|
||||
|
|
Loading…
Add table
Reference in a new issue