𝐏𝐑𝐎𝐃𝐈𝐆𝐈𝐄𝐒 ❗
Statement not printing to screen
case "1":
Console.WriteLine("You walk through the double doors. You see something shiny in a corner.");
Console.WriteLine("Do you wish to pick it up?");
Console.ReadLine();
if (input == "yes")
{
Inventory inventory = new Inventory();
inventory.AddItem("Gold Pocket Watch");
Console.WriteLine("You've found a pocket watch!");
Console.WriteLine("There was nothing else valuable inside the building so you leave.");
Console.ReadLine();
}
44 replies