Fixing NRE

This commit is contained in:
Christian 'ketura' McCarty
2023-08-28 00:47:06 -05:00
parent e712b30181
commit 267883007c

View File

@@ -480,6 +480,9 @@ public class DefaultTournament implements Tournament {
.findFirst()
.orElse(null);
if(game == null)
continue;
var gameStart = game.GetUTCStartDate();
var gameEnd = game.GetUTCEndDate();