mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 08:33:19 +01:00
Fix Windows byond installer version comparison
This commit is contained in:
@@ -124,7 +124,7 @@ namespace Tgstation.Server.Host.Components.Byond
|
||||
|
||||
//after this version lummox made DD depend of directx lol
|
||||
//but then he became amazing and not only fixed it but also gave us 30s compiles \[T]/
|
||||
if (version.Major == 512 && version.Minor >= 1427 && version.Major < 1452 && !installedDirectX)
|
||||
if (version.Major == 512 && version.Minor >= 1427 && version.Minor < 1452 && !installedDirectX)
|
||||
using (await SemaphoreSlimContext.Lock(semaphore, cancellationToken).ConfigureAwait(false))
|
||||
//check again because race conditions
|
||||
if (!installedDirectX)
|
||||
|
||||
Reference in New Issue
Block a user