From: miniduikboot Date: Tue, 1 Apr 2025 21:50:17 +0000 (+0200) Subject: Add note to old game methods X-Git-Tag: v1.10.3~11^2 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=dab8751f1db2d9e65f6aa5f7a5998d692e15ab10;p=rhonda%2Fimpostor.git 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 --- 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);