fix introduced issue with map/map_rotate commands

This commit is contained in:
RaidMax
2020-11-11 18:53:23 -06:00
parent 570a228c92
commit 5d9c8f5369
9 changed files with 40 additions and 21 deletions

View File

@ -17,9 +17,9 @@ namespace SharedLibraryCore.Interfaces
Task<string[]> SendQueryAsync(StaticHelpers.QueryType type, string parameters = "");
/// <summary>
/// sets the rcon parser configuration
/// sets the rcon parser
/// </summary>
/// <param name="config">parser config</param>
void SetConfiguration(IRConParserConfiguration config);
/// <param name="config">parser</param>
void SetConfiguration(IRConParser config);
}
}

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using SharedLibraryCore.Database.Models;
using static SharedLibraryCore.Server;
@ -82,5 +83,12 @@ namespace SharedLibraryCore.Interfaces
/// <param name="dvarName">dvar key name</param>
/// <returns></returns>
T GetDefaultDvarValue<T>(string dvarName);
/// <summary>
/// determines the amount of time to wait for the command to respond
/// </summary>
/// <param name="command">name of command being executed</param>
/// <returns></returns>
TimeSpan OverrideTimeoutForCommand(string command);
}
}