diff --git a/Components/Lua/Lua/LuaInstanceThread.cs b/Components/Lua/Lua/LuaInstanceThread.cs index 84c49519..4fe6201b 100644 --- a/Components/Lua/Lua/LuaInstanceThread.cs +++ b/Components/Lua/Lua/LuaInstanceThread.cs @@ -13,8 +13,6 @@ using Slipstream.Shared.Helpers.StrongParameters; using Slipstream.Shared.Lua; -using Swan.Formatters; - using System; using System.Collections.Generic; using System.Diagnostics; @@ -312,7 +310,7 @@ public void wait(string name, LuaFunction func, float duration) } [System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "This is expose in Lua, so we want to keep that naming style")] - public static string generate_json(LuaTable luaTable) + public string generate_json(LuaTable luaTable) { return JsonConvert.SerializeObject(Parameters.From(luaTable)); }