diff --git a/src/Tgstation.Server.Host/Components/Session/ISessionControllerFactory.cs b/src/Tgstation.Server.Host/Components/Session/ISessionControllerFactory.cs
index 34f58c8cc0..c6d1a634ff 100644
--- a/src/Tgstation.Server.Host/Components/Session/ISessionControllerFactory.cs
+++ b/src/Tgstation.Server.Host/Components/Session/ISessionControllerFactory.cs
@@ -5,8 +5,6 @@ using Tgstation.Server.Api.Models.Internal;
using Tgstation.Server.Host.Components.Deployment;
using Tgstation.Server.Host.Components.Engine;
-#nullable disable
-
namespace Tgstation.Server.Host.Components.Session
{
///
@@ -18,14 +16,14 @@ namespace Tgstation.Server.Host.Components.Session
/// Create a from a freshly launch DreamDaemon instance.
///
/// The to use.
- /// The current if any.
+ /// The current . if any.
/// The to use. will be updated with the minumum required security level for the launch.
/// If the should only validate the DMAPI then exit.
/// The for the operation.
/// A resulting in a new .
ValueTask LaunchNew(
IDmbProvider dmbProvider,
- IEngineExecutableLock currentByondLock,
+ IEngineExecutableLock? currentByondLock,
DreamDaemonLaunchParameters launchParameters,
bool apiValidate,
CancellationToken cancellationToken);