Skip to content

Commit

Permalink
Merge - v.0.1.3
Browse files Browse the repository at this point in the history
Fixed template selection not showing anything if only default templates are present
  • Loading branch information
KANAjetzt authored Oct 10, 2023
1 parent 99a9593 commit 2123b24
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions addons/mod_tool/interface/create_mod/create_mod.gd
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,12 @@ func get_template_options() -> PoolStringArray:
):
continue

# Add the default templates
mod_template_options.push_back(DIR_NAME_DEFAULT_TEMPLATE)
mod_template_options.push_back(DIR_NAME_MINIMAL_TEMPLATE)

# Add all the custom templates
mod_template_options.push_back(template_dir_name)


# Add the default templates
mod_template_options.push_back(DIR_NAME_DEFAULT_TEMPLATE)
mod_template_options.push_back(DIR_NAME_MINIMAL_TEMPLATE)

return mod_template_options as PoolStringArray

Expand Down

0 comments on commit 2123b24

Please sign in to comment.