Update MelonMain.cs

This commit is contained in:
Jadis
2022-09-08 12:09:38 +03:00
committed by GitHub
parent 48cd33e6df
commit f43aef2deb

View File

@@ -333,6 +333,19 @@ namespace DevourClient
MelonLogger.Msg("Playing a random sound !"); MelonLogger.Msg("Playing a random sound !");
} }
if (GUI.Button(new Rect(Settings.Settings.x + 580, Settings.Settings.y + 40, 150, 20), "Spawn Azazel Sam") && Player.IsInGameOrLobby())
{
Hacks.Misc.SpawnAzazel((PrefabId)BoltPrefabs.AzazelSam);
MelonLogger.Msg("Azazel Sam Spawned !");
}
if (GUI.Button(new Rect(Settings.Settings.x + 580, Settings.Settings.y + 70, 150, 20), "Spawn Azazel Molly") && Player.IsInGameOrLobby())
{
Hacks.Misc.SpawnAzazel((PrefabId)BoltPrefabs.SurvivalAzazelMolly);
MelonLogger.Msg("Azazel Molly Spawned !");
}
} }
} }
} }