fix wanted cap

This commit is contained in:
hydrant
2019-07-19 20:05:35 +02:00
parent 10d7937495
commit fddc0d3730

View File

@@ -92,7 +92,7 @@ namespace ReallifeGamemode.Server.Extensions
internal static void GiveWanteds(this User user, Client cop, int amount, string reason)
{
if (user.Wanteds + amount > 40)
if (user.Wanteds + amount > 50)
{
ChatService.ErrorMessage(cop, "Die Wanteds dürfen ein Limit von 40 nicht überschreiten");
return;