mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 08:17:47 +01:00
Add DelayInitializeMs to DalamudStartInfo
This commit is contained in:
parent
79ddc5dd31
commit
6553507146
2 changed files with 11 additions and 0 deletions
|
|
@ -79,6 +79,12 @@ namespace Dalamud
|
|||
|
||||
try
|
||||
{
|
||||
if (info.DelayInitializeMs > 0)
|
||||
{
|
||||
Log.Information(string.Format("Waiting for {0}ms before starting a session.", info.DelayInitializeMs));
|
||||
Thread.Sleep(info.DelayInitializeMs);
|
||||
}
|
||||
|
||||
Log.Information(new string('-', 80));
|
||||
Log.Information("Initializing a session..");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue