From 112545f135fe2d98536b5a1beb6dcffae832f72e Mon Sep 17 00:00:00 2001
From: smoogipooo <smoogipooo@gmail.com>
Date: Sat, 4 Mar 2017 23:24:32 +0900
Subject: [PATCH] Fix unnecessarily throwing exception if there's no last
 drawings results file.

---
 osu.Game/Screens/Tournament/Drawings.cs | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/osu.Game/Screens/Tournament/Drawings.cs b/osu.Game/Screens/Tournament/Drawings.cs
index 53ebe2606f..1270f6201d 100644
--- a/osu.Game/Screens/Tournament/Drawings.cs
+++ b/osu.Game/Screens/Tournament/Drawings.cs
@@ -294,6 +294,9 @@ namespace osu.Game.Screens.Tournament
 
             reloadTeams();
 
+            if (!storage.Exists(results_filename))
+                return;
+
             if (loadLastResults)
             {
                 try