Skip to content

Commit

Permalink
typo + random fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Notoh authored Mar 22, 2017
1 parent 6caab18 commit 4e03c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions game/src/MLGSimulator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public static void Main(string[] args) {
Console.WriteLine("\n\tYou have " + MLGPoints + " MLG Points.");
Console.WriteLine("\n\tYou are earning " + CalcPtsTurn() + " MLG Points per turn.");
Console.WriteLine("\n\tCurrently you have " + Doritos + " Doritos and " + MTNDew + " litres of Mountain Dew.");
Console.WriteLine("\n\tDo you want to buy any Doritos? Doritios earn " + DoritosPtsTurn + " and cost " + DoritosCost + " MLG Points. If you do not wish to buy any, type 0.");

Console.WriteLine("\n\tDo you want to buy any Doritos? Doritos earn " + DoritosPtsTurn + " and cost " + DoritosCost + " MLG Points. If you do not wish to buy any, type 0.");
int wannaBuy;
string attempt = Console.ReadLine();
bool noError = Int32.TryParse(attempt, out wannaBuy);
Expand Down Expand Up @@ -80,7 +80,7 @@ public static void Main(string[] args) {
Console.WriteLine("\n\tTurn " + turns + " has ended.");
Console.WriteLine("\n\t------------------------------------------------");
}
Console.WriteLine("The game has ended with you scoring " + MLGPoints + " points with " + Doritos + " Doritos and " + MTNDew + " litres of Mountain Dew!");
Console.WriteLine("The game has ended with you scoring " + MLGPoints + " MLG Points with " + Doritos + " Doritos and " + MTNDew + " litres of Mountain Dew!");
}

private static int CalcPtsTurn() {
Expand Down

0 comments on commit 4e03c29

Please sign in to comment.