From dab8751f1db2d9e65f6aa5f7a5998d692e15ab10 Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Tue, 1 Apr 2025 23:50:17 +0200 Subject: [PATCH] Add note to old game methods These are no longer used, so warn people who do want to edit them. I don't foresee these getting removed soon though, as we do want to kick players on old versions for having an old game version --- src/Impostor.Server/Http/GamesController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Impostor.Server/Http/GamesController.cs b/src/Impostor.Server/Http/GamesController.cs index 2f08f7b..2f0eecb 100644 --- a/src/Impostor.Server/Http/GamesController.cs +++ b/src/Impostor.Server/Http/GamesController.cs @@ -51,6 +51,7 @@ public sealed class GamesController : ControllerBase [HttpGet] public IActionResult Index(int mapId, GameKeywords lang, int numImpostors, [FromHeader] AuthenticationHeaderValue authorization) { + // NOTE: this method is no longer used by Among Us 16.0.0 and is only kept for backwards compatibility if (authorization.Scheme != "Bearer" || authorization.Parameter == null) { return BadRequest(); @@ -76,6 +77,7 @@ public sealed class GamesController : ControllerBase [HttpPost] public IActionResult Post(int gameId) { + // NOTE: this method is no longer used by Among Us 16.0.0 and is only kept for backwards compatibility var code = new GameCode(gameId); var game = _gameManager.Find(code); -- 2.39.5