Decompiled source of ImReallyHungry v1.0.0

BepInEx/plugins/ImReallyHungry.dll

Decompiled a month ago
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("ImReallyHungry")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ImReallyHungry")]
[assembly: AssemblyCopyright("Copyright ©  2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("4992a122-d5ca-4762-a65d-6eb28cdb830c")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace ImReallyHungry;

[BepInPlugin("synq.peak.imreallyhungry", "Im Really Hungry", "1.0.0")]
public class Plugin : BaseUnityPlugin
{
	private void Update()
	{
		foreach (Character allCharacter in Character.AllCharacters)
		{
			if (!allCharacter.IsLocal && !allCharacter.refs.customization.chickenParticle.isPlaying)
			{
				allCharacter.refs.customization.BecomeChicken();
			}
		}
	}
}