From b14a5925df8a3b7282959016e4bdfcbdc20aba32 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sun, 5 Oct 2025 23:25:08 -0700 Subject: [PATCH] fix: setGuildMotd response for U29.3.1 (#2851) Unsure which version introduced long descriptions exactly, but it surely wasn't this one. :^) Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2851 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- src/controllers/api/setGuildMotdController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/setGuildMotdController.ts b/src/controllers/api/setGuildMotdController.ts index 8007bab0..96c77148 100644 --- a/src/controllers/api/setGuildMotdController.ts +++ b/src/controllers/api/setGuildMotdController.ts @@ -57,7 +57,7 @@ export const setGuildMotdController: RequestHandler = async (req, res) => { await guild.save(); } - if (!account.BuildLabel || version_compare(account.BuildLabel, "2020.03.24.20.24") > 0) { + if (!account.BuildLabel || version_compare(account.BuildLabel, "2020.11.04.18.58") > 0) { res.json({ IsLongMOTD, MOTD }); } else { res.send(MOTD).end();