quantum-space-buddies/QSB/LogSync/Patches/LogPatches.cs
2021-02-09 17:18:01 +00:00

23 lines
699 B
C#

using QSB.Events;
using QSB.Patches;
namespace QSB.LogSync.Patches
{
public class LogPatches : QSBPatch
{
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
public static void RevealFact(string id, bool saveGame, bool showNotification, bool __result)
{
if (!__result)
{
return;
}
GlobalMessenger<string, bool, bool>.FireEvent(EventNames.QSBRevealFact, id, saveGame, showNotification);
}
public override void DoPatches() => QSBCore.Helper.HarmonyHelper.AddPostfix<ShipLogManager>("RevealFact", typeof(LogPatches), nameof(RevealFact));
public override void DoUnpatches() => QSBCore.Helper.HarmonyHelper.Unpatch<ShipLogManager>("RevealFact");
}
}