fix(CheatEnabler): restore BuildToolOpt station replacement

This commit is contained in:
2026-07-12 18:30:20 +08:00
parent 66ecebaca7
commit 010ec73c8d
7 changed files with 21 additions and 7 deletions
@@ -0,0 +1,12 @@
namespace CheatEnabler.Patches;
/// <summary>
/// Preserves the pre-refactor type and method identity used by mods that locate FactoryPatch through reflection.
/// </summary>
public static class FactoryPatch
{
public static void ArrivePlanet(PlanetFactory factory)
{
Factory.FactoryPatch.ArrivePlanet(factory);
}
}