From 8d6de56e91a8dfbd4c60864ef9d10eaa2b9e307b Mon Sep 17 00:00:00 2001 From: "Parker J. Banks" Date: Sun, 21 May 2023 12:09:54 -0600 Subject: [PATCH] Rumorz display bugfix Updates rumorz module to display the N latest rumors, rather than the first N rumors. --- core/rumorz.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rumorz.js b/core/rumorz.js index 65ebc251..d2c24756 100644 --- a/core/rumorz.js +++ b/core/rumorz.js @@ -172,7 +172,7 @@ exports.getModule = class RumorzModule extends MenuModule { StatLog.getSystemLogEntries( SystemLogKeys.UserAddedRumorz, - StatLog.Order.Timestamp, + StatLog.Order.TimestampDesc, (err, entries) => { return callback(err, entriesView, entries); }