Skip to content

Commit 619c9a2

Browse files
committed
Improve BGM/time-based update reason presented to end-user
1 parent 9b5a526 commit 619c9a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fileVersionManagement.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ def __init__(self, subMod, modFileList, localVersionFolder, _testRemoteSubModVer
9595
installIsNewer, reason = installNewerThanDate(self.localVersionFilePath, file.skipIfModNewerThan)
9696
if installIsNewer:
9797
msg = "Not installing {} because: ({})".format(file.id, reason)
98-
self.updatesRequiredDict[file.id] = (False, msg)
98+
self.updatesRequiredDict[file.id] = (False, "Not installing because you already have these files")
9999
print(msg)
100100
else:
101101
msg = "{} - Will install because: ({})".format(self.updatesRequiredDict[file.id][1], reason)
102-
self.updatesRequiredDict[file.id] = (self.updatesRequiredDict[file.id][0], msg)
102+
self.updatesRequiredDict[file.id] = (self.updatesRequiredDict[file.id][0], "You are missing these files (judging from your last mod install date)")
103103
print(msg)
104104

105105

0 commit comments

Comments
 (0)