Fix issue with MagicStorage and its recursive crafting feature causing a lot of pickups that aren't actually real

This commit is contained in:
OMGeeky
2024-06-09 16:10:32 +02:00
parent ccfcfc1e88
commit 08ad70bcd1
3 changed files with 10 additions and 1 deletions

View File

@@ -122,5 +122,11 @@ namespace ItemChecklist
}
}
}
[MethodImpl(MethodImplOptions.NoInlining)]
internal static bool IsSimulatingCrafts()
{
return CraftingGUI.SimulatingCrafts;
}
}
}