From 48284c574d3bdc1671ad398fbb770e8ee204c987 Mon Sep 17 00:00:00 2001 From: Xjph Date: Sun, 26 Jun 2022 13:14:02 -0230 Subject: [PATCH] Make Lua GC call nullsafe --- ObservatoryExplorer/CustomCriteriaManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObservatoryExplorer/CustomCriteriaManager.cs b/ObservatoryExplorer/CustomCriteriaManager.cs index cfa9d2e..df52544 100644 --- a/ObservatoryExplorer/CustomCriteriaManager.cs +++ b/ObservatoryExplorer/CustomCriteriaManager.cs @@ -271,7 +271,7 @@ namespace Observatory.Explorer private void LuaGC() { - LuaState.DoString("collectgarbage()"); + LuaState?.DoString("collectgarbage()"); } internal class Parent