drop useless numbers from live version

This commit is contained in:
IsWaffle 2022-02-21 21:34:43 -05:00
parent 751f1e75f2
commit 7f532dc9b3

@ -19,7 +19,9 @@ namespace EftPatchHelper.Helpers
eftVersion = eftVersion.Remove(0, 2);
}
return eftVersion;
string[] fixedVersion = eftVersion.Split('.')[0..4];
return string.Join('.', fixedVersion);
}
public static EftClient GetClient(string Version)