Skip to content

Commit

Permalink
Another slight rename
Browse files Browse the repository at this point in the history
  • Loading branch information
SokyranTheDragon committed Aug 26, 2024
1 parent 322cacb commit 2483e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Client/AsyncTime/TimeControlUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private static void DoTimeControlsGUI(Rect timerRect)
rect.x += rect.width;
}

ForcedTickRate info = Tickable.GetForcedSpeedInfo();
ForcedTickRate info = Tickable.GetForcedTickRate();

if (info == ForcedTickRate.Paused) // Completely paused
Widgets.DrawLineHorizontal(rect.width, rect.height / 2f, rect.width * 3f);
Expand Down
2 changes: 1 addition & 1 deletion Source/Client/Patches/TickPatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public static float ActualRateMultiplier(this ITickable tickable, TimeSpeed spee
return rate;
}

public static ForcedTickRate GetForcedSpeedInfo(this ITickable tickable)
public static ForcedTickRate GetForcedTickRate(this ITickable tickable)
{
if (Multiplayer.GameComp.asyncTime)
{
Expand Down

0 comments on commit 2483e2b

Please sign in to comment.