Fix exported demo builds breaking
Demo still requires tool builds - keeping release libs lean.
This commit is contained in:
parent
01d643831c
commit
9fbbea49a9
|
@ -68,7 +68,7 @@ func _populate_agent_files(p_path: String = "res://demo/agents/") -> void:
|
||||||
if dir.current_is_dir() or file_name.begins_with("agent_base"):
|
if dir.current_is_dir() or file_name.begins_with("agent_base"):
|
||||||
file_name = dir.get_next()
|
file_name = dir.get_next()
|
||||||
continue
|
continue
|
||||||
agent_files.append(file_name.get_file())
|
agent_files.append(file_name.get_file().trim_suffix(".remap"))
|
||||||
file_name = dir.get_next()
|
file_name = dir.get_next()
|
||||||
dir.list_dir_end()
|
dir.list_dir_end()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue