Skip to content

Commit

Permalink
Merge pull request #61 from MrDave1999/fix/Flamethrower
Browse files Browse the repository at this point in the history
fix: Set new ammo to FlameThrower
  • Loading branch information
MrDave1999 authored Sep 6, 2024
2 parents 53fdbff + dd7bda7 commit ba8de4e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ public void Give(Player player)
PlayerInfo playerInfo = player.GetInfo();
player.Health = 100;
player.Armour = 100;
player.GiveWeapon(Weapon.FlameThrower, ammo: 500);
// 5500 (shows in game as 500-50).
const int ammo = 5500;
player.GiveWeapon(Weapon.FlameThrower, ammo);
playerInfo.StatsPerRound.ResetPoints();
}
}

0 comments on commit ba8de4e

Please sign in to comment.