Skip to content
This repository has been archived by the owner on Sep 12, 2020. It is now read-only.

Commit

Permalink
* Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
moelrobi committed Aug 13, 2020
1 parent a43a129 commit 74c8ad4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Synapse/Api/Round.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ namespace Synapse.Api
{
public static class Round
{
[Obsolete("Please use RoundLength")]
public static TimeSpan RoundLenght => RoundStart.RoundLenght;

public static DateTime StartedTime => DateTime.Now - RoundLenght;
public static TimeSpan RoundLength => RoundStart.RoundLenght;

public static DateTime StartedTime => DateTime.Now - RoundLength;

public static bool IsStarted => RoundSummary.RoundInProgress();

Expand Down

0 comments on commit 74c8ad4

Please sign in to comment.