Fix a NullReferenceException in ByondCommand

This commit is contained in:
Dominion
2023-05-28 13:10:27 -04:00
parent 401bb866a4
commit 74a9a0392c
@@ -61,7 +61,7 @@ namespace Tgstation.Server.Host.Components.Chat.Commands
});
return Task.FromResult(new MessageContent
{
Text = watchdog.ActiveCompileJob.ByondVersion,
Text = watchdog.ActiveCompileJob?.ByondVersion ?? "None!",
});
}
}