Skip to content

Commit

Permalink
Fix exported demo builds breaking
Browse files Browse the repository at this point in the history
Demo still requires tool builds - keeping release libs lean.
  • Loading branch information
limbonaut committed Feb 19, 2024
1 parent 01d6438 commit 9fbbea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/demo/scenes/showcase.gd
Original file line number Diff line number Diff line change
Expand Up @@ -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"):
file_name = dir.get_next()
continue
agent_files.append(file_name.get_file())
agent_files.append(file_name.get_file().trim_suffix(".remap"))
file_name = dir.get_next()
dir.list_dir_end()

Expand Down

0 comments on commit 9fbbea4

Please sign in to comment.