0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 01:30:44 -05:00

Fixed formatting of client/prestige/list response

This commit is contained in:
Chomp 2024-12-26 23:10:49 +00:00
parent d5690dd403
commit 5383e11d15

View File

@ -44,7 +44,7 @@ export class PrestigeController {
* Handle /client/prestige/list * Handle /client/prestige/list
*/ */
public getPrestige(sessionID: string, info: any): any { public getPrestige(sessionID: string, info: any): any {
return this.databaseService.getTemplates().prestige; return { elements: this.databaseService.getTemplates().prestige };
} }
/** /**