Skip to content

Commit 8a00af8

Browse files
committed
(1.8.9) downgrade ploceus to make mixin happy
1 parent 5eb6786 commit 8a00af8

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

1.8.9/src/main/java/io/github/axolotlclient/mixin/ItemEntityRendererMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
public abstract class ItemEntityRendererMixin {
3838

3939
@Inject(method = "applyItemBobbing", at = @At(value = "INVOKE", target = "Lcom/mojang/blaze3d/platform/GlStateManager;translatef(FFF)V", ordinal = 0), cancellable = true)
40-
private void axolotlclient$transformItems(ItemEntity itemEntity, double d, double e, double f, float g, BakedModel bakedModel, CallbackInfoReturnable<Integer> cir, @Local(ordinal = 1) int i) {
40+
private void axolotlclient$transformItems(ItemEntity itemEntity, double d, double e, double f, float g, BakedModel bakedModel, CallbackInfoReturnable<Integer> cir, @Local int i) {
4141
if (AxolotlClient.CONFIG.flatItems.get()) {
4242
GlStateManager.translated(d, e + 0.05, f);
4343
GlStateManager.rotatef(itemEntity.pitch, 0, 0, 1);

1.8.9/src/main/java/io/github/axolotlclient/mixin/TitleScreenMixin.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ else if (button.id == 253)
185185

186186
@Inject(method = "<init>",
187187
at = @At(value = "INVOKE",
188-
target = "Ljava/util/List;isEmpty()Z", remap = false))
189-
private void axolotlclient$customSplashTexts(CallbackInfo ci, @Local ArrayList<String> list) throws IOException {
188+
target = "Ljava/io/BufferedReader;readLine()Ljava/lang/String;", remap = false))
189+
private void axolotlclient$customSplashTexts(CallbackInfo ci, @Local List<String> list) throws IOException {
190190
try (InputStream input = Minecraft.getInstance().getResourceManager()
191191
.getResource(new Identifier("axolotlclient", "texts/splashes.txt")).asStream()) {
192192
list.addAll(IOUtils.readLines(input));

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id("dev.yumi.gradle.licenser") version "2.0.+"
1010
id("io.github.p03w.machete") version "2.+" apply false
1111
id("fabric-loom") version "1.10.+" apply false
12-
id("ploceus") version "1.10.+" apply false
12+
id("ploceus") version "1.10.3" apply false
1313
}
1414

1515
version = "${project.version}"

common/src/main/java/io/github/axolotlclient/credits/Credits.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public class Credits {
4141
contributor("gart", "gartbin dev and host", "Image sharing help", "https://gart.sh", "Backend developer");
4242
contributor("xlingy", "Website author");
4343
contributor("DarkKronicle", "Bedwars Overlay", "Author of KronHUD, the best HUD mod!");
44+
contributor("Floweynt", "Playerstats command");
4445

4546
otherPerson("AMereBagatelle", "Author of the excellent FabricSkyBoxes Mod");
4647
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ org.gradle.parallel=true
66
axolotlclient.modules.all=true
77

88
# Mod Properties
9-
version=3.1.2-beta.4
9+
version=3.1.2-beta.5
1010

1111
maven_group=io.github.axolotlclient
1212

0 commit comments

Comments
 (0)