File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 5
5
from collections .abc import Iterable
6
6
from pathlib import Path
7
7
8
- from PyQt5 .QtCore import QDir , qInfo , qWarning
8
+ from PyQt5 .QtCore import QDir , qWarning
9
9
10
10
import mobase
11
11
@@ -124,15 +124,16 @@ def _root_mappings(
124
124
for child in mod_path .iterdir ():
125
125
# Check blacklist
126
126
if child .name .casefold () in self ._root_blacklist :
127
- qInfo (f"Skipping { child .name } ({ mod_name } )" )
127
+ qWarning (f"Skipping { child .name } ({ mod_name } )" )
128
128
continue
129
129
destination = game_path / child .name
130
130
# Check existing
131
131
if destination .exists ():
132
132
qWarning (
133
- f"Existing game files/folders are not linked: "
133
+ f"Overwriting of existing game files/folders is not supported! "
134
134
f"{ destination .as_posix ()} ({ mod_name } )"
135
135
)
136
+ continue
136
137
# Mapping: mod -> root
137
138
yield mobase .Mapping (
138
139
source = str (child ),
You can’t perform that action at this time.
0 commit comments