This commit is contained in:
Dominion
2023-05-29 10:58:38 -04:00
parent ea8f12da0a
commit 3e76e386d8
@@ -423,10 +423,10 @@ namespace Tgstation.Server.Host.Components.Byond
{
if (customVersionStream != null)
{
int customInstallationNumber = 1;
var customInstallationNumber = 1;
do
{
version = new Version(version.Major, version.Minor, customInstallationNumber);
version = new Version(version.Major, version.Minor, customInstallationNumber++);
}
while (installedVersions.ContainsKey(version));
}