1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-09 23:00:57 -05:00

add tell async and update SharedLibraryCore version

This commit is contained in:
RaidMax
2022-03-23 11:38:09 -05:00
parent 7a1ed90f06
commit 932bc77798
6 changed files with 41 additions and 30 deletions

View File

@ -42,7 +42,8 @@ namespace SharedLibraryCore
#endif
public static Encoding EncodingType;
public static Layout CurrentLocalization = new Layout(new Dictionary<string, string>());
public static TimeSpan DefaultCommandTimeout { get; set; } = new TimeSpan(0, 0, 25);
public static TimeSpan DefaultCommandTimeout { get; set; } = new(0, 0, Utilities.IsDevelopment ? 360 : 25);
public static char[] DirectorySeparatorChars = { '\\', '/' };
public static char CommandPrefix { get; set; } = '!';