From 10d7937495159dea678a390f88aa51e78eb1d081 Mon Sep 17 00:00:00 2001 From: Lukas Moungos Date: Fri, 19 Jul 2019 19:41:59 +0200 Subject: [PATCH] Minor bug fix. --- ReallifeGamemode.Server/Commands/FactionCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Commands/FactionCommands.cs b/ReallifeGamemode.Server/Commands/FactionCommands.cs index 7d0b1950..ceda43a9 100644 --- a/ReallifeGamemode.Server/Commands/FactionCommands.cs +++ b/ReallifeGamemode.Server/Commands/FactionCommands.cs @@ -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;