Fix a semi-colon

This commit is contained in:
Dominion
2023-05-23 19:41:06 -04:00
parent 4cd7d57bd1
commit 69b8d94ccd
@@ -115,8 +115,7 @@ namespace Tgstation.Server.Host.Controllers
.ChatBots
.AsQueryable()
.Where(x => x.InstanceId == Instance.Id)
.CountAsync(cancellationToken)
;
.CountAsync(cancellationToken);
if (countOfExistingBotsInInstance >= Instance.ChatBotLimit.Value)
return Conflict(new ErrorMessageResponse(ErrorCode.ChatBotMax));