File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,7 @@ where
260
260
|| ext == "esp"
261
261
|| ( use_omw_plugins && ext == "omwaddon" )
262
262
|| ( use_omw_plugins && ext == "omwscripts" )
263
+ || ( use_omw_plugins && ext == "omwgame" )
263
264
{
264
265
results. push ( file_path) ;
265
266
}
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ pub fn new_openmw_parser() -> Parser {
33
33
vec ! [
34
34
".esp" . into( ) ,
35
35
".esm" . into( ) ,
36
+ ".omwgame" . into( ) ,
36
37
".omwaddon" . into( ) ,
37
38
".omwscripts" . into( ) ,
38
39
] ,
Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ impl Sorter {
192
192
// put all items in mods_copy ending with .esm at the start
193
193
let mut esms = vec ! [ ] ;
194
194
for ( i, m) in mods_copy. iter ( ) . enumerate ( ) {
195
- if m. ends_with ( ".esm" ) {
195
+ if m. ends_with ( ".esm" ) || m . ends_with ( ".omwgame" ) {
196
196
esms. push ( i) ;
197
197
}
198
198
}
You can’t perform that action at this time.
0 commit comments