Skip to content

Commit a79fe94

Browse files
committed
Update to forge 49.0.12
1 parent 3f7d1ee commit a79fe94

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A Bukkit server implementation utilizing Mixin.
66

77
| Release | Forge | Status | Build |
88
|:--------------------:|:-------:|:------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
9-
| Whisper (1.20.4) | 49.0.3 | ACTIVE | [![1.20.4 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=Whisper&style=flat-square)](https://github.com/IzzelAliz/Arclight/actions?query=branch%3AWhisper) |
9+
| Whisper (1.20.4) | 49.0.12 | ACTIVE | [![1.20.4 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=Whisper&style=flat-square)](https://github.com/IzzelAliz/Arclight/actions?query=branch%3AWhisper) |
1010
| Trials (1.20-1.20.1) | 47.2.16 | LTS | [![1.20.1 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=Trials&style=flat-square)](https://github.com/IzzelAliz/Arclight/actions?query=branch%3ATrials) |
1111
| Horn (1.19-1.19.2) | 43.3.2 | LTS | [![Horn Status](https://img.shields.io/appveyor/build/IzzelAliz/arclight-19?style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-19) |
1212

arclight-forge/src/main/java/io/izzel/arclight/boot/mod/ArclightLaunchHandler.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package io.izzel.arclight.boot.mod;
22

3-
import net.minecraftforge.fml.loading.FMLLoader;
4-
import net.minecraftforge.fml.loading.LibraryFinder;
53
import net.minecraftforge.fml.loading.targets.CommonLaunchHandler;
64

75
import java.nio.file.Path;
@@ -26,9 +24,7 @@ public boolean isProduction() {
2624

2725
@Override
2826
public List<Path> getMinecraftPaths() {
29-
var vers = FMLLoader.versionInfo();
30-
var mc = LibraryFinder.findPathForMaven(vers.forgeGroup(), "forge", "", this.type.name(), vers.mcAndForgeVersion());
31-
return List.of(mc);
27+
return List.of(getPathFromResource("net/minecraft/server/MinecraftServer.class"));
3228
}
3329

3430
@Override

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ allprojects {
1414
ext {
1515
agpVersion = '1.23'
1616
minecraftVersion = '1.20.4'
17-
forgeVersion = '49.0.3'
17+
forgeVersion = '49.0.12'
1818
apiVersion = '1.5.6'
1919
toolsVersion = '1.3.0'
2020
mixinVersion = '0.8.5'

0 commit comments

Comments
 (0)