fix some things

This commit is contained in:
Michael
2020-08-01 00:29:31 +02:00
parent 6f57c8c93b
commit 4ec055a341
5 changed files with 24 additions and 16 deletions

View File

@@ -154,11 +154,11 @@ namespace ReallifeGamemode.Server.Gangwar
{
gangwarPlayer.TriggerEvent("GangwarScore", this.Attacker, this.Owner, this.Att_Score, this.Def_Score);
}
if (this.Att_Score >= 5)
if (this.Att_Score >= 200)
{
this.takeOver(this.Attacker);
}
else if (this.Def_Score >= 5)
else if (this.Def_Score >= 200)
{
this.takeOver(this.Owner);
}