diff --git a/mod/TTT.Logs/LogsCommand.cs b/mod/TTT.Logs/LogsCommand.cs index 4a0ced2..5e5458a 100644 --- a/mod/TTT.Logs/LogsCommand.cs +++ b/mod/TTT.Logs/LogsCommand.cs @@ -32,7 +32,7 @@ public void Command_Logs(CCSPlayerController? executor, CommandInfo info) var roundId = service.GetCurrentRound(); - if (!int.TryParse(roundIdString, out roundId)) + if (string.IsNullOrEmpty(roundIdString) && !int.TryParse(roundIdString, out roundId)) { info.ReplyToCommand(StringUtils.FormatTTT("Invalid round id, /logs ")); return;