0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-12 17:30:42 -05:00
This commit is contained in:
Dev 2024-07-26 09:20:39 +01:00
commit ed741dd543
3 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ git config --local user.email "USERNAME@SOMETHING.com"
## Requirements ## Requirements
- Escape From Tarkov 30626 - Escape From Tarkov 31124
- .NET 8 SDK - .NET 8 SDK
- Visual Studio Code - Visual Studio Code
- [PowerShell v7](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows) - [PowerShell v7](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows)

View File

@ -223,7 +223,7 @@ namespace SPT.Launcher
LogManager.Instance.Info($"[LaunchGame] spt-core.dll version: {dllVersion}"); LogManager.Instance.Info($"[LaunchGame] spt-core.dll version: {dllVersion}");
// Edge case, running on locally built modules dlls, ignore check and return ok // Edge case, running on locally built modules dlls, ignore check and return ok
if (dllVersion.Major == 0) return false; if (dllVersion.Major == 1) return false;
// check 'X'.x.x // check 'X'.x.x
if (serverVersion.Major != dllVersion.Major) return true; if (serverVersion.Major != dllVersion.Major) return true;