Skip to content

Commit

Permalink
Display remaining feature HP correctly in the console
Browse files Browse the repository at this point in the history
  • Loading branch information
KJeff01 committed Aug 13, 2023
1 parent 3dbedc9 commit 56e9651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/display.cpp
Expand Up @@ -1982,7 +1982,7 @@ static void dealWithLMBFeature(FEATURE *psFeature)
const DebugInputManager& dbgInputManager = gInputManager.debugManager();
if (dbgInputManager.debugMappingsAllowed())
{
console("(Feature) %s ID: %d ref: %d Hitpoints: %d/%d", getID(psFeature->psStats), psFeature->id, psFeature->psStats->ref, psFeature->psStats->body, psFeature->body);
console("(Feature) %s ID: %d ref: %d Hitpoints: %d/%d", getID(psFeature->psStats), psFeature->id, psFeature->psStats->ref, psFeature->body, psFeature->psStats->body);
}
}

Expand Down

0 comments on commit 56e9651

Please sign in to comment.