diff --git a/Shared/Player.cs b/Shared/Player.cs index 985624d..14ac866 100644 --- a/Shared/Player.cs +++ b/Shared/Player.cs @@ -36,9 +36,9 @@ namespace SemiColinGames { private float invincibilityTime = 0; // For passing into Line.Rasterize() during movement updates. - private readonly IList movePoints = new ProfilingList(32, "Player.movePoints"); + private readonly IList movePoints = new ProfilingList(64, "Player.movePoints"); // Possible hitboxes for player <-> obstacles. - private readonly IList candidates = new ProfilingList(8, "Player.candidates"); + private readonly IList candidates = new ProfilingList(16, "Player.candidates"); public Player(Vector2 position, int facing) { this.position = position;