SPM fix for negative/teamdamage
added localization as downloaded from the Master API interupted network communication no longer treated as unknown exception topstats prints the right message if no one qualifies angle adjustments move unflag to seperate command
This commit is contained in:
@ -31,9 +31,9 @@ namespace WebfrontCore.Controllers
|
||||
if (Localization == null)
|
||||
Localization = SharedLibraryCore.Utilities.CurrentLocalization.LocalizationIndex;
|
||||
|
||||
if (Manager.GetApplicationSettings().Configuration().EnableDiscordLink && SocialLink == null)
|
||||
if (Manager.GetApplicationSettings().Configuration().EnableSocialLink && SocialLink == null)
|
||||
{
|
||||
SocialLink = Manager.GetApplicationSettings().Configuration().DiscordInviteCode;
|
||||
SocialLink = Manager.GetApplicationSettings().Configuration().SocialLinkAddress;
|
||||
SocialTitle = Manager.GetApplicationSettings().Configuration().SocialLinkTitle;
|
||||
}
|
||||
}
|
||||
|
@ -49,7 +49,7 @@ namespace WebfrontCore.Controllers
|
||||
Manager.GetEventHandler().AddEvent(remoteEvent);
|
||||
// wait for the event to process
|
||||
|
||||
await Task.Run(() => remoteEvent.OnProcessed.WaitHandle.WaitOne(5000));
|
||||
await Task.Run(() => remoteEvent.OnProcessed.Wait());
|
||||
var response = server.CommandResult.Where(c => c.ClientId == client.ClientId).ToList();
|
||||
|
||||
// remove the added command response
|
||||
|
Reference in New Issue
Block a user