We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce138c commit 0442924Copy full SHA for 0442924
1 file changed
src/CSharpPluginLoader.cs
@@ -1,4 +1,4 @@
1
-using Oxide.Core;
+using Oxide.Core;
2
using Oxide.Core.Plugins;
3
using Oxide.Core.Logging;
4
using Oxide.CSharp;
@@ -253,11 +253,6 @@ private void PluginLoadingCompleted(CompilablePlugin plugin)
253
LoadingPlugins.Remove(plugin.Name);
254
plugin.IsLoading = false;
255
256
- if (plugin.CompilerErrors != null && plugin.CompilerErrors.StartsWith("Timed out waiting for compilation"))
257
- {
258
- compiler.OnCompileTimeout();
259
- }
260
-
261
foreach (string loadingName in LoadingPlugins.ToArray())
262
{
263
CompilablePlugin loadingPlugin = GetCompilablePlugin(plugin.Directory, loadingName);
0 commit comments