Change check messages

This commit is contained in:
JeremyStar™ 2024-04-07 22:01:37 +02:00
parent 2dd5c2b4c2
commit c04e6246a4
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -85,13 +85,13 @@ func update_window_properties() -> void:
func perform_checks() -> void:
ldiag("Performing checks")
# Check for development mode
if config_dev: lwarn("Development mode is active, here be dragons!")
if config_dev: lwarn("config_dev: Development mode is active, here be dragons!")
# Check orphan nodes setting
if config_print_orphan_nodes: lwarn("Bessere Tests is allowed to complain about orphan nodes. It's known that this can lead to false-positive warnings (see #1)")
if config_print_orphan_nodes: lwarn("config_print_orphan_nodes: Bessere Tests is allowed to complain about orphan nodes. It's known that this can lead to false-positive warnings (see #1)")
# Check for testing directory
if !DirAccess.dir_exists_absolute(config_test_directory): await lcrash("Testing directory \"" + config_test_directory + "\" does not exist")
if !DirAccess.dir_exists_absolute(config_test_directory): await lcrash("config_test_directory: Directory \"" + config_test_directory + "\" does not exist")
# Print test results
func print_results() -> void: