mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-11 06:40:39 +00:00
16 lines
329 B
C#
16 lines
329 B
C#
|
using HarmonyLib;
|
|||
|
using QSB.Patches;
|
|||
|
|
|||
|
/*
|
|||
|
* For those who come here,
|
|||
|
* leave while you still can.
|
|||
|
*/
|
|||
|
|
|||
|
namespace QSB.EchoesOfTheEye.LightSensorSync.Patches;
|
|||
|
|
|||
|
[HarmonyPatch(typeof(SingleLightSensor))]
|
|||
|
internal class PlayerLightSensorPatches : QSBPatch
|
|||
|
{
|
|||
|
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
|
|||
|
}
|