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:
parent
94fbc9d380
commit
f7469d8202
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user