add support for neoforge in atl packs (#4383)
Some checks failed
Build / Build (Linux) (push) Has been cancelled
Build / Build (Linux-aarch64) (push) Has been cancelled
Build / Build (Windows-MSVC) (push) Has been cancelled
Build / Build (Windows-MSVC-arm64) (push) Has been cancelled
Build / Build (Windows-MinGW-arm64) (push) Has been cancelled
Build / Build (Windows-MinGW-w64) (push) Has been cancelled
Build / Build (macOS) (push) Has been cancelled
CodeQL Code Scanning / CodeQL (push) Has been cancelled
Flatpak / Build (aarch64) (push) Has been cancelled
Flatpak / Build (x86_64) (push) Has been cancelled
Nix / Build (aarch64-darwin) (push) Has been cancelled
Nix / Build (x86_64-darwin) (push) Has been cancelled
Nix / Build (x86_64-linux) (push) Has been cancelled
Nix / Build (aarch64-linux) (push) Has been cancelled

This commit is contained in:
Alexandru Ionut Tripon 2025-11-22 18:32:24 +02:00 committed by GitHub
commit 8abf5ed7b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -107,7 +107,7 @@ static void loadVersionLoader(ATLauncher::VersionLoader& p, QJsonObject& obj)
p.recommended = metadata["recommended"].toBool();
// Minecraft Forge
if (p.type == "forge") {
if (p.type == "forge" || p.type == "neoforge") {
p.version = metadata["version"].toString("");
}