quantum-space-buddies/QSB/LogSync/Patches/LogPatches.cs
Mister_Nebula bba5fe4a45 cleanup
2021-03-13 10:17:52 +00:00

23 lines
665 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;
}
QSBEventManager.FireEvent(EventNames.QSBRevealFact, id, saveGame, showNotification);
}
public override void DoPatches() => QSBCore.HarmonyHelper.AddPostfix<ShipLogManager>("RevealFact", typeof(LogPatches), nameof(RevealFact));
public override void DoUnpatches() => QSBCore.HarmonyHelper.Unpatch<ShipLogManager>("RevealFact");
}
}