mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 09:35:26 +00:00
37 lines
964 B
C#
37 lines
964 B
C#
using HarmonyLib;
|
|
using QSB.Events;
|
|
using QSB.Patches;
|
|
using QSB.Player;
|
|
using System.Linq;
|
|
|
|
namespace QSB.EyeOfTheUniverse.GalaxyMap.Patches
|
|
{
|
|
internal class GalaxyMapPatches : QSBPatch
|
|
{
|
|
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
|
|
|
|
[HarmonyPrefix]
|
|
[HarmonyPatch(typeof(GalaxyMapController), nameof(GalaxyMapController.OnPressInteract))]
|
|
public static bool OnPressInteractPrefix()
|
|
{
|
|
var allInObservatory = QSBPlayerManager.PlayerList.All(x => x.EyeState == EyeState.Observatory);
|
|
|
|
if (!allInObservatory)
|
|
{
|
|
GalaxyMapManager.Instance.Tree.StartConversation();
|
|
}
|
|
|
|
return allInObservatory;
|
|
}
|
|
|
|
[HarmonyPostfix]
|
|
[HarmonyPatch(typeof(GalaxyMapController), nameof(GalaxyMapController.OnPressInteract))]
|
|
public static void OnPressInteractPostfix()
|
|
{
|
|
if (QSBPlayerManager.PlayerList.All(x => x.EyeState == EyeState.Observatory))
|
|
{
|
|
QSBEventManager.FireEvent(EventNames.QSBZoomOut);
|
|
}
|
|
}
|
|
}
|
|
} |