Skip to content

Commit 03971dc

Browse files
authored
fix: supported extensions not including default extensions [SKIP_CHANGELOG] (#373)
# Summary fixes regression introduced in #366 which caused the default extensions not to be correctly populated
1 parent b36de62 commit 03971dc

File tree

1 file changed

+1
-1
lines changed
  • crates/bevy_mod_scripting_core/src

1 file changed

+1
-1
lines changed

crates/bevy_mod_scripting_core/src/asset.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ impl Default for ScriptAssetSettings {
148148
("rhai", Language::Rhai),
149149
("rn", Language::Rune),
150150
]),
151-
supported_extensions: &[],
151+
supported_extensions: &["lua", "luau", "rhai", "rn"],
152152
}
153153
}
154154
}

0 commit comments

Comments
 (0)