diff --git a/src/game/game.controller.ts b/src/game/game.controller.ts index 27e3248368c7fa54c76db0cc114e66afdc445118..092f484ffe1576be36a4a6e74d27bb28fbf0e4dc 100644 --- a/src/game/game.controller.ts +++ b/src/game/game.controller.ts @@ -86,6 +86,11 @@ export class GameController { return this.gameservice.listFactions(id); } + @Get('flag-events/:id') + async returnFlagboxInfo(@Param('id') id: GameEntity) { + return this.gameservice.returnObjectivePointInfo(id); + } + @Get('flag/:id') async flagboxQuery(@Param('id') id: string) { return this.gameservice.flagboxQuery(id);