mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 21:47:24 +00:00
Remove equal checks
This commit is contained in:
parent
d69a4ffaf0
commit
2bfff2933a
@ -1043,8 +1043,8 @@ void HandlePacket(Packet* packet) {
|
|||||||
|
|
||||||
player->GetComponent<CharacterComponent>()->SetLastRocketConfig(u"");
|
player->GetComponent<CharacterComponent>()->SetLastRocketConfig(u"");
|
||||||
// Retroactive check for if player has joined a faction to set their 'joined a faction' flag to true.
|
// Retroactive check for if player has joined a faction to set their 'joined a faction' flag to true.
|
||||||
if (c->GetPlayerFlag(ePlayerFlags::VENTURE_FACTION) == true || c->GetPlayerFlag(ePlayerFlags::ASSEMBLY_FACTION) == true ||
|
if (c->GetPlayerFlag(ePlayerFlags::VENTURE_FACTION) || c->GetPlayerFlag(ePlayerFlags::ASSEMBLY_FACTION) ||
|
||||||
c->GetPlayerFlag(ePlayerFlags::PARADOX_FACTION) == true || c->GetPlayerFlag(ePlayerFlags::SENTINEL_FACTION) == true) {
|
c->GetPlayerFlag(ePlayerFlags::PARADOX_FACTION) || c->GetPlayerFlag(ePlayerFlags::SENTINEL_FACTION)) {
|
||||||
c->SetPlayerFlag(ePlayerFlags::JOINED_A_FACTION, true);
|
c->SetPlayerFlag(ePlayerFlags::JOINED_A_FACTION, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user