diff --git a/src/Tgstation.Server.Host/Components/InstanceFactory.cs b/src/Tgstation.Server.Host/Components/InstanceFactory.cs
index a9f5878c41..3f9cf25dc4 100644
--- a/src/Tgstation.Server.Host/Components/InstanceFactory.cs
+++ b/src/Tgstation.Server.Host/Components/InstanceFactory.cs
@@ -25,8 +25,6 @@ using Tgstation.Server.Host.System;
using Tgstation.Server.Host.Transfer;
using Tgstation.Server.Host.Utils;
-#nullable disable
-
namespace Tgstation.Server.Host.Components
{
///
@@ -332,7 +330,7 @@ namespace Tgstation.Server.Host.Components
eventConsumer.SetWatchdog(watchdog);
commandFactory.SetWatchdog(watchdog);
- Instance instance = null;
+ Instance? instance = null;
var dreamMaker = new DreamMaker(
engineManager,
gameIoManager,
@@ -406,6 +404,6 @@ namespace Tgstation.Server.Host.Components
///
/// The .
/// The for the .
- IIOManager CreateInstanceIOManager(Models.Instance metadata) => new ResolvingIOManager(ioManager, metadata.Path);
+ IIOManager CreateInstanceIOManager(Models.Instance metadata) => new ResolvingIOManager(ioManager, metadata.Path!);
}
}