Skip to content

Commit

Permalink
fix uninitialized variable in PlayerContainer (#1423)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmosewaMC authored Jan 18, 2024
1 parent 6bf084e commit 4f3b4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dChatServer/PlayerContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PlayerContainer::~PlayerContainer() {
}

PlayerData::PlayerData() {
gmLevel == eGameMasterLevel::CIVILIAN;
gmLevel = eGameMasterLevel::CIVILIAN;
}

TeamData::TeamData() {
Expand Down

0 comments on commit 4f3b4f5

Please sign in to comment.