Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon committed Aug 28, 2024
1 parent dc89f9d commit 8130c16
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ bool CWarList::OnChatCmdSimple(char Prefix, int ClientId, int Team, const char *
AddSimpleTeam(pRawArgLine);
return true;
}
else if(!str_comp(pCmd, "delwar") ||!str_comp(pCmd, "peace") ) // "delwar <name>"
else if(!str_comp(pCmd, "delwar") || !str_comp(pCmd, "peace")) // "delwar <name>"
{
RemoveSimpleWar(pRawArgLine);
return true;
}
else if(!str_comp(pCmd, "delteam") || !str_comp(pCmd, "unfriend")|| !str_comp(pCmd, "unteam")) // "unfriend <name>"
else if(!str_comp(pCmd, "delteam") || !str_comp(pCmd, "unfriend") || !str_comp(pCmd, "unteam")) // "unfriend <name>"
{
RemoveSimpleTeam(pRawArgLine);
return true;
Expand Down

0 comments on commit 8130c16

Please sign in to comment.