diff --git a/src/common/Common.h b/src/common/Common.h index 3cdec373..cf5eb548 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -784,7 +784,7 @@ namespace Sapphire::Common { None = 0, // ? MagicPoints = 3, - TacticsPoints = 5, + TacticsPoints = 6, // WARGauge = 22, // DRKGauge = 25, // AetherflowStack = 30, diff --git a/src/world/Action/Action.cpp b/src/world/Action/Action.cpp index bc2f7f9c..f9bd2ff1 100644 --- a/src/world/Action/Action.cpp +++ b/src/world/Action/Action.cpp @@ -716,6 +716,7 @@ bool Action::Action::primaryCostCheck( bool subtractCosts ) } default: + Logger::debug( "Unknown action cost type: {}", m_primaryCostType ); return false; } }