-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad1e87f
commit f6264d4
Showing
9 changed files
with
46 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Java with Gradle | |
|
||
on: | ||
push: | ||
branches: [master] | ||
branches: [1.12.2] | ||
|
||
jobs: | ||
build: | ||
|
@@ -11,10 +11,10 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Set up JDK 17 | ||
- name: Set up JDK 8 | ||
uses: actions/[email protected] | ||
with: | ||
java-version: 17 | ||
java-version: 8 | ||
|
||
- name: Give permissions to Gradle | ||
run: chmod +x ./gradlew | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
forge/src/main/java/dev/tonimatas/packetfixer/PacketFixerMixins.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package dev.tonimatas.packetfixer; | ||
|
||
import zone.rong.mixinbooter.ILateMixinLoader; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
public class PacketFixerMixins implements ILateMixinLoader { | ||
@Override | ||
public List<String> getMixinConfigs() { | ||
return Collections.singletonList("packetfixer.mixins.json"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters