mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
15 lines
374 B
C#
15 lines
374 B
C#
using HarmonyLib;
|
|
|
|
namespace NewHorizons.Patches;
|
|
|
|
[HarmonyPatch]
|
|
public class AutoSlideProjectorPatches
|
|
{
|
|
[HarmonyPostfix]
|
|
[HarmonyPatch(typeof(AutoSlideProjector), nameof(AutoSlideProjector.Play))]
|
|
public static void AutoSlideProjector_Play(ref SlideCollectionContainer ____slideCollectionItem)
|
|
{
|
|
____slideCollectionItem.enabled = true;
|
|
}
|
|
}
|