openrec 0.6.9

This commit is contained in:
recroom2016tutorial
2022-05-11 21:51:00 -04:00
parent 9a86d1d88e
commit a2775a6d95
3 changed files with 20 additions and 12 deletions

View File

@@ -99,13 +99,17 @@ namespace start
goto tryagain;
tryagain:
try
if (!File.Exists("SaveData\\Rooms\\Downloaded\\roomname.txt"))
{
api.CustomRooms.RoomGet("gizmoface");
}
catch
{
goto tryagain;
try
{
api.CustomRooms.RoomGet("gizmoface");
}
catch
{
goto tryagain;
}
}
Console.WriteLine("Done!");
Console.Clear();