Update 'project/Terkoiz.Freecam/FreecamController.cs'

This commit is contained in:
Zachary Braden 2022-06-25 08:50:47 +00:00
parent b6092fee94
commit 7fba75b4f0

View File

@ -89,7 +89,6 @@ namespace Terkoiz.Freecam
if (_mainCamera == null) if (_mainCamera == null)
{ {
FreecamPlugin.Logger.LogError("Failed to locate main camera"); FreecamPlugin.Logger.LogError("Failed to locate main camera");
PreloaderUI.Instance.Console.AddLog("ERROR: Failed to locate main camera", "FreeCam");
return; return;
} }
} }
@ -158,7 +157,6 @@ namespace Terkoiz.Freecam
if (_playerUi == null) if (_playerUi == null)
{ {
FreecamPlugin.Logger.LogError("Failed to locate player UI"); FreecamPlugin.Logger.LogError("Failed to locate player UI");
PreloaderUI.Instance.Console.AddLog("ERROR: Failed to locate player UI", "FreeCam");
return; return;
} }
} }
@ -194,7 +192,6 @@ namespace Terkoiz.Freecam
else else
{ {
FreecamPlugin.Logger.LogError("Failed to get the PlayerBody field"); FreecamPlugin.Logger.LogError("Failed to get the PlayerBody field");
PreloaderUI.Instance.Console.AddLog("ERROR: Failed to get the PlayerBody field", "FreeCam");
} }
// Detour the Player.Move method into an empty one, preventing the character from moving during Freecam mode // Detour the Player.Move method into an empty one, preventing the character from moving during Freecam mode