Skip to content

Commit

Permalink
Change default additional info def value handling in CharHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxFleur committed Nov 16, 2021
1 parent 1a00ac9 commit 0c80a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/handler/CharacterHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CharacterHandler {
// Is the character an NPC or not
bool isNPC = false;
// Additional information (e.g. status effects). Optional.
QString additionalInf = "";
QString additionalInf = QString();
};

// Vector storing all created characters
Expand All @@ -38,7 +38,7 @@ class CharacterHandler {
int modifier = 0,
int hp = 0,
bool isNPC = false,
QString additionalInf = "");
QString additionalInf = QString());

// Sort the stored characters
void
Expand Down

0 comments on commit 0c80a8e

Please sign in to comment.