Skip to content

Commit

Permalink
Syntax error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Davek84 committed Feb 11, 2021
1 parent 335f64a commit 1513423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matchodds/matchodds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ void::matchodds::GetToxicCommentary(std::string eventName) {
}
else if (getGameTime() > 60 && getGameTime() < 121) {
Commentary = "...";
if (isFavourite && isPredictedFavourite) Commentary = "Somehow you're still favorites, not to your parents though...;
if (isFavourite && isPredictedFavourite) Commentary = "Somehow you're still favorites, not to your parents though...";
if (!isFavourite && isPredictedFavourite) Commentary = "Current MVP: " + MVPPlayerName;
if (isFavourite && !isPredictedFavourite) Commentary = "You're going to choke! Current MVP: " + MVPPlayerName;
if (!isFavourite && !isPredictedFavourite) Commentary = "Loser!";
Expand Down

0 comments on commit 1513423

Please sign in to comment.