Skip to content

Commit 70991f0

Browse files
committed
fix feather build in project properties for gen1 beta versions
1 parent 67fdbb7 commit 70991f0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

public/develop.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,15 +397,13 @@ import { normalizeMinecraftVersion } from "./minecraft_semver.js";
397397
}
398398

399399
async function displayProjectProperties(minecraftVersion, intermediaryGen, modLoader, loaderVersion, featherBuilds, ravenBuilds, sparrowBuilds, nestsBuilds, oslVersion) {
400-
const sharedVersioning = isSharedVersioning(minecraftVersion);
401400
const elementId = "gradle.properties.content";
402-
403401
const lines = [];
404402

405403
lines.push(`minecraft_version = ${minecraftVersion.id}`);
406404
lines.push(`loader_version = ${loaderVersion}`);
407405
lines.push("");
408-
if (sharedVersioning) {
406+
if (featherBuilds.merged != null) {
409407
lines.push(`feather_build = ${featherBuilds.merged}`);
410408
} else {
411409
lines.push(`feather_build = ${minecraftVersion.client ? featherBuilds.client : featherBuilds.server}`);

0 commit comments

Comments
 (0)