From c86ed39dfe21d9e95746b5fdd23f11711ce82596 Mon Sep 17 00:00:00 2001 From: SrLicht Date: Sat, 8 Jul 2023 17:22:07 -0300 Subject: [PATCH] Yep my bad * Fix IsRoundEnded --- NwPluginAPI/Core/Round.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NwPluginAPI/Core/Round.cs b/NwPluginAPI/Core/Round.cs index f0e4725..1ab41b7 100644 --- a/NwPluginAPI/Core/Round.cs +++ b/NwPluginAPI/Core/Round.cs @@ -15,7 +15,7 @@ public static class Round /// /// Gets a value indicating whether the round is ended or not. /// - public static bool IsRoundEnded => !IsRoundStarted && Round.Duration.Seconds > 1; + public static bool IsRoundEnded => !IsRoundStarted && Round.Duration.TotalSeconds > 1; /// /// Gets or sets a value indicating whether the round is locked or not.