mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
16 lines
382 B
C#
16 lines
382 B
C#
using HarmonyLib;
|
|
using NewHorizons.Handlers;
|
|
|
|
namespace NewHorizons.Patches.ProxyPatches;
|
|
|
|
[HarmonyPatch(typeof(ProxyOrbiter))]
|
|
public static class ProxyOrbiterPatches
|
|
{
|
|
[HarmonyPostfix]
|
|
[HarmonyPatch(nameof(ProxyOrbiter.Awake))]
|
|
public static void ProxyOrbiter_Awake(ProxyOrbiter __instance)
|
|
{
|
|
ProxyHandler.RegisterVanillaProxyOrbiter(__instance);
|
|
}
|
|
}
|