diff --git a/src/Tgstation.Server.Host/Components/ByondExecutableLock.cs b/src/Tgstation.Server.Host/Components/ByondExecutableLock.cs
index 2e89dacb38..2be7ab498a 100644
--- a/src/Tgstation.Server.Host/Components/ByondExecutableLock.cs
+++ b/src/Tgstation.Server.Host/Components/ByondExecutableLock.cs
@@ -2,16 +2,25 @@
namespace Tgstation.Server.Host.Components
{
+ ///
sealed class ByondExecutableLock : IByondExecutableLock
{
+ ///
public Version Version { get; set; }
+ ///
public string DreamDaemonPath { get; set; }
+ ///
public string DreamMakerPath { get; set; }
+ //at one point in design, byond versions were to delete themselves if they werent the active version
+ //That changed at some point so these functions are intentioanlly left blank
+
+ ///
public void Dispose() { }
+ ///
public void DoNotDeleteThisSession() { }
}
}