update notification refs inventory, not assets

This commit is contained in:
howard-stearns 2018-11-04 12:17:41 -08:00
parent 4f713b038e
commit 7115f0e688

View file

@ -583,7 +583,7 @@ function notificationPollCallbackUpdates(updatesArray) {
if (!ui.notificationInitialCallbackMade[0]) {
message = updatesArray.length + " of your purchased items " +
(updatesArray.length === 1 ? "has an update " : "have updates ") +
"available. Open ASSETS to update.";
"available. Open INVENTORY to update.";
ui.notificationDisplayBanner(message);
ui.notificationPollCaresAboutSince[0] = true;
@ -591,7 +591,7 @@ function notificationPollCallbackUpdates(updatesArray) {
for (var i = 0; i < updatesArray.length; i++) {
message = "Update available for \"" +
updatesArray[i].base_item_title + "\"." +
"Open ASSETS to update.";
"Open INVENTORY to update.";
ui.notificationDisplayBanner(message);
}
}