From bb0f5866bfe852877aee21fc6323a39e752fb5e6 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Fri, 1 Aug 2025 19:50:04 -0400 Subject: [PATCH] Include engine version in `DmbLock` description. --- .../Components/Deployment/DeploymentLockManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Components/Deployment/DeploymentLockManager.cs b/src/Tgstation.Server.Host/Components/Deployment/DeploymentLockManager.cs index 46efbfdbc9..568fca8022 100644 --- a/src/Tgstation.Server.Host/Components/Deployment/DeploymentLockManager.cs +++ b/src/Tgstation.Server.Host/Components/Deployment/DeploymentLockManager.cs @@ -63,7 +63,7 @@ namespace Tgstation.Server.Host.Components.Deployment /// /// The to get a description of. /// A verbose description of . - static string GetFullLockDescriptor(DmbLock dmbLock) => $"{dmbLock.LockID} {dmbLock.Descriptor} (Created at {dmbLock.LockTime}){(dmbLock.KeptAlive ? " (RELEASED)" : String.Empty)}"; + static string GetFullLockDescriptor(DmbLock dmbLock) => $"{dmbLock.LockID} {dmbLock.EngineVersion} {dmbLock.Descriptor} (Created at {dmbLock.LockTime}){(dmbLock.KeptAlive ? " (RELEASED)" : String.Empty)}"; /// /// Initializes a new instance of the class.