remove trailing . on message

This commit is contained in:
xxSeys1
2025-04-10 21:34:00 +02:00
parent 63655d18c5
commit 6884df02fd

View File

@@ -488,7 +488,7 @@ namespace FlaxEditor.Windows
// Pause on Error (we should do it as fast as possible)
if (newEntry.Group == LogGroup.Error && _pauseOnErrorButton.Checked && Editor.StateMachine.CurrentState == Editor.StateMachine.PlayingState)
{
Debug.Write(LogType.Info, "Pause Play mode on error (toggle this behaviour in the Debug Log panel).");
Debug.Write(LogType.Info, "Pause Play mode on error (toggle this behaviour in the Debug Log panel)");
Editor.Simulation.RequestPausePlay();
}
}