We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89dae63 commit 8f82b09Copy full SHA for 8f82b09
1 file changed
src/CompilableFile.cs
@@ -87,7 +87,7 @@ internal virtual void OnCompilationStarted()
87
Interface.Oxide.NextTick(() =>
88
{
89
timeoutTimer?.Destroy();
90
- timeoutTimer = timer.Once(60f, OnCompilationTimeout);
+ timeoutTimer = timer.Once(Math.Max(30, Loader.LoadingPlugins.Count * 3), OnCompilationTimeout);
91
});
92
}
93
0 commit comments