Fix NullReferenceException on start.

This commit is contained in:
Sardelka
2022-06-04 12:04:02 +08:00
parent 546f4b16f4
commit d061b5ecbe
5 changed files with 24 additions and 7 deletions

View File

@ -11,9 +11,7 @@ namespace RageCoop.Client.Scripting
{
internal class Engine : Core.Scripting.ScriptingEngine
{
public Engine() : base(typeof(ClientScript), Main.Logger)
{
public Engine() : base(typeof(ClientScript), Main.Logger) { }
}
}
}