Messed up merge conflict? Fixed

This commit is contained in:
LumaLivy 2021-11-19 23:38:22 -05:00
commit a7443c16a0

View file

@ -62,12 +62,8 @@ namespace LBPUnion.ProjectLighthouse.Controllers
{ {
v = await visited.FirstOrDefaultAsync(); 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) switch (gameVersion)
{ {
@ -119,12 +115,8 @@ namespace LBPUnion.ProjectLighthouse.Controllers
{ {
v = await visited.FirstOrDefaultAsync(); v = await visited.FirstOrDefaultAsync();
} }
if (v == null) return StatusCode(403, "");
if (v == null) if (v == null) return this.NotFound();
{
return this.NotFound();
}
slot.PlaysLBP1++; slot.PlaysLBP1++;
v.PlaysLBP1++; v.PlaysLBP1++;