From 5383e11d152da5a5861e6d058678118c202ab632 Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 26 Dec 2024 23:10:49 +0000 Subject: [PATCH] Fixed formatting of `client/prestige/list` response --- project/src/controllers/PrestigeController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/PrestigeController.ts b/project/src/controllers/PrestigeController.ts index de7c7fb7..952d3bbf 100644 --- a/project/src/controllers/PrestigeController.ts +++ b/project/src/controllers/PrestigeController.ts @@ -44,7 +44,7 @@ export class PrestigeController { * Handle /client/prestige/list */ public getPrestige(sessionID: string, info: any): any { - return this.databaseService.getTemplates().prestige; + return { elements: this.databaseService.getTemplates().prestige }; } /**