This commit is contained in:
caesarakalaeii 2023-08-12 22:20:28 +02:00
parent 3961a79931
commit 9fb470cd98
1 changed files with 1 additions and 2 deletions

View File

@ -49,7 +49,7 @@ public class MyPlayer : Player<MyPlayer>
var w = new WeaponItem
{
ToolName = gunGame[level].Name,
MainSight = Attachments.Reflex
MainSight = Attachments.RedDot
};
SetPrimaryWeapon(w, 20, true);
}
@ -193,7 +193,6 @@ internal class MyGameServer : GameServer<MyPlayer>
var killer = onPlayerKillArguments.Killer;
var victim = onPlayerKillArguments.Victim;
killer.level++;
victim.level--;
return true;
}