mirror of
https://github.com/JDM170/SaveWizard
synced 2025-04-20 22:30:42 +07:00
Fix research all dealers and agencies
Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
@@ -123,6 +123,10 @@ class MainWindow(QDialog, Ui_MainWindow):
|
||||
self.old_file = ""
|
||||
util.set_lines([])
|
||||
|
||||
self.selected_game = ""
|
||||
self.owns = {}
|
||||
self.dlc = {}
|
||||
|
||||
for key, value in self.basic_edits.items():
|
||||
key.setText("")
|
||||
value[0].setChecked(True)
|
||||
|
||||
@@ -301,7 +301,7 @@ class SecondWindow(QDialog, Ui_SecondWindow):
|
||||
array_line = util.search_line(line_to_search)
|
||||
visited = util.get_array_items(array_line)
|
||||
for element in city_list:
|
||||
if element in all_cities and not element not in visited:
|
||||
if (element in all_cities) and (element not in visited):
|
||||
util.add_array_value(array_line, element)
|
||||
QMessageBox.information(self, "Success", success_message)
|
||||
check_func()
|
||||
|
||||
Reference in New Issue
Block a user