Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qutrits committed Jul 13, 2024
1 parent bc019a2 commit 0335fd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Entities/LevelStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2375,7 +2375,7 @@ public class LevelStats {
{ "round_egg_grab_02", new LevelStats("round_egg_grab_02", null, "Egg Siege", LevelType.Team, BestRecordType.HighScore, false, false, 2, 120, 120, Properties.Resources.round_egg_siege_icon, Properties.Resources.round_egg_siege_big_icon) },
{ "round_fall_ball_60_players", new LevelStats("round_fall_ball_60_players", null, "Fall Ball", LevelType.Team, BestRecordType.HighScore, false, false, 1, 90, 90, Properties.Resources.round_fall_ball_icon, Properties.Resources.round_fall_ball_big_icon) },
{ "round_ballhogs", new LevelStats("round_ballhogs", null, "Hoarders", LevelType.Team, BestRecordType.HighScore, false, false, 1, 90, 90, Properties.Resources.round_hoarders_icon, Properties.Resources.round_hoarders_big_icon) },
{ "round_hoops", new LevelStats("round_hoops", null, "Hoopsie Daisy", LevelType.Team, BestRecordType.HighScore, false, false, 1, 120, 120, Properties.Resources.round_hoopsie_daisy_icon, Properties.Resources.round_hoopsie_daisy_big_icon) },
{ "round_hoops", new LevelStats("round_hoops", null, "Hoopsie Daisy", LevelType.Team, BestRecordType.HighScore, false, false, 1, 300, 300, Properties.Resources.round_hoopsie_daisy_icon, Properties.Resources.round_hoopsie_daisy_big_icon) },
{ "round_jinxed", new LevelStats("round_jinxed", null, "Jinxed", LevelType.Team, BestRecordType.Fastest, false, false, 1, 300, 300, Properties.Resources.round_jinxed_icon, Properties.Resources.round_jinxed_big_icon) },
{ "round_chicken_chase", new LevelStats("round_chicken_chase", null, "Pegwin Pursuit", LevelType.Team, BestRecordType.HighScore, false, false, 3, 120, 120, Properties.Resources.round_pegwin_pursuit_icon, Properties.Resources.round_pegwin_pursuit_big_icon) },
{ "round_territory_control_s4_show", new LevelStats("round_territory_control_s4_show", null, "Power Trip", LevelType.Team, BestRecordType.HighScore, false, false, 4, 100, 100, Properties.Resources.round_power_trip_icon, Properties.Resources.round_power_trip_big_icon) },
Expand Down
4 changes: 2 additions & 2 deletions FallGuysStats.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -1162,7 +1162,7 @@
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
<PackageReference Include="System.Diagnostics.Tools" Version="4.3.0" />
<PackageReference Include="System.Diagnostics.Tracing" Version="4.3.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.6" />
<PackageReference Include="System.Drawing.Common" Version="8.0.7" />
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
<PackageReference Include="System.Globalization" Version="4.3.0" />
<PackageReference Include="System.Globalization.Calendars" Version="4.3.0" />
Expand Down Expand Up @@ -1197,7 +1197,7 @@
<PackageReference Include="System.Text.Encoding" Version="4.3.0" />
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.3.0" />
<PackageReference Include="System.Text.Encodings.Web" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.3" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="System.Threading" Version="4.3.0" />
<PackageReference Include="System.Threading.Tasks" Version="4.3.0" />
Expand Down
2 changes: 1 addition & 1 deletion Views/Overlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ private void SetFinishLabel(StatSummary summary, LevelType type, string roundId,
DateTime end = this.lastRound.End;
DateTime? finish = this.lastRound.Finish;
TimeSpan runningTime = start > currentUtc ? currentUtc - this.startTime : currentUtc - start;
int maxRunningTime = 12; // in minutes
int maxRunningTime = 30; // in minutes
float fBrightness = 0.7f;

if (!Stats.IsDisplayOverlayTime) {
Expand Down

0 comments on commit 0335fd5

Please sign in to comment.