using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using BepInEx.Logging;
using HarmonyLib;
using Microsoft.CodeAnalysis;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AssemblyTitle("VentureValheim.NoVegvisirHints")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("VentureValheim.NoVegvisirHints")]
[assembly: AssemblyCopyright("Copyright © 2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("C89FE73C-B004-4421-9C68-D8511708D7ED")]
[assembly: AssemblyFileVersion("0.2.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("0.2.0.0")]
[module: UnverifiableCode]
namespace Microsoft.CodeAnalysis
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
internal sealed class EmbeddedAttribute : Attribute
{
}
}
namespace System.Runtime.CompilerServices
{
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
internal sealed class NullableAttribute : Attribute
{
public readonly byte[] NullableFlags;
public NullableAttribute(byte P_0)
{
NullableFlags = new byte[1] { P_0 };
}
public NullableAttribute(byte[] P_0)
{
NullableFlags = P_0;
}
}
[CompilerGenerated]
[Microsoft.CodeAnalysis.Embedded]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
internal sealed class NullableContextAttribute : Attribute
{
public readonly byte Flag;
public NullableContextAttribute(byte P_0)
{
Flag = P_0;
}
}
}
namespace VentureValheim.NoVegvisirHints
{
[BepInDependency(/*Could not decode attribute arguments.*/)]
[BepInPlugin("com.orianaventure.mod.NoVegvisirHints", "NoVegvisirHints", "0.2.0")]
public class NoVegvisirHintsPlugin : BaseUnityPlugin
{
private const string ModName = "NoVegvisirHints";
private const string ModVersion = "0.2.0";
private const string Author = "com.orianaventure.mod";
private const string ModGUID = "com.orianaventure.mod.NoVegvisirHints";
private readonly Harmony HarmonyInstance = new Harmony("com.orianaventure.mod.NoVegvisirHints");
public static readonly ManualLogSource NoVegvisirHintsLogger = Logger.CreateLogSource("NoVegvisirHints");
public void Awake()
{
Assembly executingAssembly = Assembly.GetExecutingAssembly();
HarmonyInstance.PatchAll(executingAssembly);
}
}
[HarmonyPatch(typeof(Vegvisir), "Interact")]
public static class Patch_Vegvisir_Interact
{
private static void Prefix(Vegvisir __instance)
{
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
if (__instance.m_locations.Count > 1)
{
return;
}
foreach (VegvisrLocation location in __instance.m_locations)
{
location.m_pinType = (PinType)(-1);
}
}
}
[HarmonyPatch(typeof(Minimap), "DiscoverLocation")]
public static class Patch_Minimap_DiscoverLocation
{
private static bool Prefix(PinType type)
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_0002: Unknown result type (might be due to invalid IL or missing references)
//IL_0003: Unknown result type (might be due to invalid IL or missing references)
PinType val = (PinType)(-1);
if (type == val)
{
NoVegvisirHintsPlugin.NoVegvisirHintsLogger.LogInfo((object)"Map pin blocked!");
return false;
}
return true;
}
}
}