From 929aaeacd05422f761a42ba0bd5b144f581f7ab7 Mon Sep 17 00:00:00 2001 From: jadis0x <49281043+jadis0x@users.noreply.github.com> Date: Thu, 12 Jan 2023 21:46:02 +0300 Subject: [PATCH] Log messages have been added for LoadMap. --- DevourClient/Helpers/Map.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/DevourClient/Helpers/Map.cs b/DevourClient/Helpers/Map.cs index 3dbcf0c..563e6d2 100644 --- a/DevourClient/Helpers/Map.cs +++ b/DevourClient/Helpers/Map.cs @@ -34,10 +34,12 @@ if (Il2CppPhoton.Bolt.BoltNetwork.IsServer) { Il2CppPhoton.Bolt.BoltNetwork.LoadScene(mapName); + + MelonLoader.MelonLogger.Warning("Please press the button only once, it may take some time for the map to load."); } else { - DevourClient.Hacks.Misc.ShowMessageBox("You must be the host to use this command!"); + MelonLoader.MelonLogger.Warning("You must be the host to use this command!"); } } }