0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-12 17:30:42 -05:00

Fixed incorrect version check

This commit is contained in:
Dev 2024-07-13 19:01:49 +01:00
parent 94fbc9d380
commit f7469d8202

View File

@ -232,7 +232,7 @@ namespace SPT.Launcher
if (serverVersion.Minor != dllVersion.Minor) return true; if (serverVersion.Minor != dllVersion.Minor) return true;
// check x.x.'X' // check x.x.'X'
if (serverVersion.Tag != dllVersion.Tag) return true; if (serverVersion.Build != dllVersion.Build) return true;
return false; // Versions match, hooray return false; // Versions match, hooray
} }