SMSMod-SpacemarketSimulator/Patches/AITrafficLight_EnableGreenLight_Patch.cs
2025-06-08 21:40:03 +02:00

7 lines
319 B
C#

using HarmonyLib;
using TurnTheGameOn.SimpleTrafficSystem;
namespace SpacemarketSimulator.Patches
{
[HarmonyPatch(typeof(AITrafficLight), "EnableGreenLight")] public static class AITrafficLight_EnableGreenLight_Patch { public static void Postfix(AITrafficLight __instance) => __instance.DisableAllLights(); }
}