From 78e3380b0a165150de8d8a0e8273ec3485358d21 Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Sun, 15 Jun 2025 01:16:25 +0700 Subject: [PATCH] DOCUMENTATION: Remove unnecessary br tag in scripts.md (#2204) --- src/Documentation/doc/basic/scripts.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Documentation/doc/basic/scripts.md b/src/Documentation/doc/basic/scripts.md index 9e08f4d86..4b99ae387 100644 --- a/src/Documentation/doc/basic/scripts.md +++ b/src/Documentation/doc/basic/scripts.md @@ -70,8 +70,6 @@ In that case you would want to write your script in a never-ending loop, like `w However, if you are not careful, this can crash your game. If the code inside the loop doesn't `await` for some time, it will never give other scripts and the game itself time to process. -
- To help you find this potential bug, any `while (true)` loop without any `await` statement inside it will be marked. A red decoration will appear on the left side of the script editor, telling you about the issue.