1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 22:37:45 +00:00

Fixed sprint action

This commit is contained in:
Mordred 2022-01-02 16:41:38 +01:00
parent 4b74b8bfc8
commit c4129924ea
2 changed files with 2 additions and 1 deletions

View file

@ -784,7 +784,7 @@ namespace Sapphire::Common
{
None = 0, // ?
MagicPoints = 3,
TacticsPoints = 5,
TacticsPoints = 6,
// WARGauge = 22,
// DRKGauge = 25,
// AetherflowStack = 30,

View file

@ -716,6 +716,7 @@ bool Action::Action::primaryCostCheck( bool subtractCosts )
}
default:
Logger::debug( "Unknown action cost type: {}", m_primaryCostType );
return false;
}
}