Minor bug fix.

This commit is contained in:
Lukas Moungos
2019-07-19 19:41:59 +02:00
parent 31cf6c5ace
commit 10d7937495

View File

@@ -189,7 +189,7 @@ namespace ReallifeGamemode.Server.Commands
public void CmdFactionWanted(Client player, string nameOrId, int amount, string reason)
{
User user = player.GetUser();
if (user == null || (user.FactionId != 1 && user.FactionId != 2))
if (user == null || (user.FactionId != 1 && user.FactionId != 3))
{
ChatService.NotAuthorized(player);
return;