Skip to content

Commit

Permalink
Fixed the Quarter, Semi and Third Place Final tags
Browse files Browse the repository at this point in the history
  • Loading branch information
John Tomlinson committed Jul 3, 2024
1 parent a369824 commit 0e6655f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions FootballEngine/Logic/FixtureAndResultLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,15 @@ private Stage GetStage(string stageName)
case "LAST_16":
stage = Stage.Round_of_16;
break;
case "QUARTER_FINAL":
case "QUARTER_FINALS":
stage = Stage.Quarter_Final;
break;
case "SEMI_FINAL":
case "SEMI_FINALS":
stage = Stage.Semi_Final;
break;
case "THIRD_PLACE":
stage = Stage.Third_Place;

Check failure on line 168 in FootballEngine/Logic/FixtureAndResultLogic.cs

View workflow job for this annotation

GitHub Actions / build-and-deploy

'Enums.Stage' does not contain a definition for 'Third_Place'

Check failure on line 168 in FootballEngine/Logic/FixtureAndResultLogic.cs

View workflow job for this annotation

GitHub Actions / build-and-deploy

'Enums.Stage' does not contain a definition for 'Third_Place'
break;
case "FINAL":
stage = Stage.Final;
break;
Expand Down

0 comments on commit 0e6655f

Please sign in to comment.