mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 16:12:54 +08:00
Avoid throwing / logging an error when drawings.txt
is missing
This commit is contained in:
parent
f9814a66cb
commit
ceec74aaca
@ -27,6 +27,9 @@ namespace osu.Game.Tournament.Screens.Drawings.Components
|
||||
{
|
||||
var teams = new List<TournamentTeam>();
|
||||
|
||||
if (!storage.Exists(teams_filename))
|
||||
return teams;
|
||||
|
||||
try
|
||||
{
|
||||
using (Stream stream = storage.GetStream(teams_filename, FileAccess.Read, FileMode.Open))
|
||||
|
Loading…
Reference in New Issue
Block a user