removed player preload scene from level class (unused multiplayer shennanigans i was trying ages ago)

This commit is contained in:
JHDev2006
2025-09-27 11:19:38 +01:00
parent de3cfd57d5
commit e4334dbb7a
2 changed files with 2 additions and 9 deletions

View File

@@ -42,8 +42,7 @@ func get_custom_characters() -> void:
print(Player.CHARACTER_NAMES)
var base_path = Global.config_path
var char_dir = base_path.path_join("custom_characters")
print(char_dir)
var char_dir = base_path.path_join("custom_characters")
for i in DirAccess.get_directories_at(char_dir):
var char_path = char_dir.path_join(i)
var char_info_path = char_path.path_join("CharacterInfo.json")