Decompiled source of BeyondLimitsPatcher v3.0.0

plugins/Marioalexsan.BeyondLimitsPatcher.dll

Decompiled a day ago
using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Versioning;
using System.Security;
using System.Security.Permissions;
using BepInEx;
using HarmonyLib;
using Lilly_s_Beyond_Limits;
using Microsoft.CodeAnalysis;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: IgnoresAccessChecksTo("Assembly-CSharp")]
[assembly: IgnoresAccessChecksTo("Lilly_s_Beyond_Limits")]
[assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
[assembly: AssemblyCompany("Marioalexsan.BeyondLimitsPatcher")]
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyFileVersion("3.0.0.0")]
[assembly: AssemblyInformationalVersion("3.0.0+d488a58d8e1adfb2bdc0e9685a62c9a4a05ac14c")]
[assembly: AssemblyProduct("BeyondLimitsPatcher")]
[assembly: AssemblyTitle("Marioalexsan.BeyondLimitsPatcher")]
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
[assembly: AssemblyVersion("3.0.0.0")]
[module: UnverifiableCode]
[module: RefSafetyRules(11)]
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;
		}
	}
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)]
	internal sealed class RefSafetyRulesAttribute : Attribute
	{
		public readonly int Version;

		public RefSafetyRulesAttribute(int P_0)
		{
			Version = P_0;
		}
	}
}
namespace Marioalexsan.BeyondLimitsPatcher
{
	[BepInPlugin("Marioalexsan.BeyondLimitsPatcher", "BeyondLimitsPatcher", "3.0.0")]
	[BepInDependency(/*Could not decode attribute arguments.*/)]
	public class BeyondLimisPatcher : BaseUnityPlugin
	{
		private readonly Harmony _harmony = new Harmony("Marioalexsan.BeyondLimitsPatcher");

		public void Awake()
		{
			_harmony.PatchAll();
		}
	}
	[HarmonyPatch(typeof(BeyondCore), "findPlayer")]
	internal static class DoNotPatchPlayerNames
	{
		private static bool Prefix()
		{
			return false;
		}
	}
	[HarmonyPatch(typeof(BeyondCore), "onMessage")]
	internal static class DoNotAcceptCustomNamesOverNetwork
	{
		private static bool Prefix()
		{
			return false;
		}
	}
	[HarmonyPatch(typeof(lillyCred), "Prefix")]
	internal static class DoNotSendCustomNamesOverNetwork
	{
		private static bool Prefix()
		{
			return false;
		}
	}
	internal static class ModInfo
	{
		public const string GUID = "Marioalexsan.BeyondLimitsPatcher";

		public const string NAME = "BeyondLimitsPatcher";

		public const string VERSION = "3.0.0";
	}
}
namespace System.Runtime.CompilerServices
{
	[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
	internal sealed class IgnoresAccessChecksToAttribute : Attribute
	{
		public IgnoresAccessChecksToAttribute(string assemblyName)
		{
		}
	}
}