diff --git a/ProjectLighthouse/Controllers/EnterLevelController.cs b/ProjectLighthouse/Controllers/EnterLevelController.cs index d704cfcc..af799c02 100644 --- a/ProjectLighthouse/Controllers/EnterLevelController.cs +++ b/ProjectLighthouse/Controllers/EnterLevelController.cs @@ -62,12 +62,8 @@ namespace LBPUnion.ProjectLighthouse.Controllers { v = await visited.FirstOrDefaultAsync(); } - if (v == null) return this.StatusCode(403, ""); - - if (v == null) - { - return this.NotFound(); - } + + if (v == null) return this.NotFound(); switch (gameVersion) { @@ -119,12 +115,8 @@ namespace LBPUnion.ProjectLighthouse.Controllers { v = await visited.FirstOrDefaultAsync(); } - if (v == null) return StatusCode(403, ""); - if (v == null) - { - return this.NotFound(); - } + if (v == null) return this.NotFound(); slot.PlaysLBP1++; v.PlaysLBP1++;