fix introduced issue with map/map_rotate commands
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user