From 83e9236fa77638b5033537a120dedbbb6606e4fb Mon Sep 17 00:00:00 2001 From: IzzelAliz Date: Thu, 8 Jun 2023 10:09:32 +0800 Subject: [PATCH] Update to forge 45.1.0 --- README.md | 2 +- .../src/main/resources/META-INF/accesstransformer.cfg | 3 +++ build.gradle | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4024108a..f88c083b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A Bukkit server implementation utilizing Mixin. | Release | Forge | Status | Build | |:-------------------:|:-------:|:------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:| -| Executions (1.19.4) | 45.0.64 | ACTIVE | [![1.19.4 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=Executions&style=flat-square)](https://github.com/IzzelAliz/Arclight/actions?query=branch%3AExecutions) | +| Executions (1.19.4) | 45.1.0 | ACTIVE | [![1.19.4 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=Executions&style=flat-square)](https://github.com/IzzelAliz/Arclight/actions?query=branch%3AExecutions) | | 1.18.x | 40.1.80 | LTS | [![1.18 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=1.18&style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-18) | | 1.16.x | 36.2.39 | LTS | [![1.16 Status](https://img.shields.io/github/actions/workflow/status/IzzelAliz/Arclight/gradle.yml?branch=1.16&style=flat-square)](https://ci.appveyor.com/project/IzzelAliz/arclight-16) | diff --git a/arclight-common/src/main/resources/META-INF/accesstransformer.cfg b/arclight-common/src/main/resources/META-INF/accesstransformer.cfg index 4582744b..e2f448ca 100644 --- a/arclight-common/src/main/resources/META-INF/accesstransformer.cfg +++ b/arclight-common/src/main/resources/META-INF/accesstransformer.cfg @@ -2,6 +2,9 @@ public net.minecraft.world.item.DebugStickItem m_150802_(Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/item/ItemStack;)Z # handleInteraction public net.minecraft.world.level.block.ComposterBlock m_269590_(Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; # empty public net.minecraft.world.entity.player.Player m_6107_()Z # isImmobile +public net.minecraft.server.packs.repository.Pack f_244124_ # resources +public net.minecraft.world.flag.FeatureFlag f_243952_ # universe +public net.minecraft.world.flag.FeatureFlagRegistry f_244560_ # names # Arclight 1.19.3 public net.minecraft.server.MinecraftServer$TimeProfiler (JI)V # TimeProfiler public net.minecraft.world.level.block.entity.SkullBlockEntity f_262250_ # noteBlockSound diff --git a/build.gradle b/build.gradle index 57332318..9d7d6a7d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ allprojects { group 'io.izzel.arclight' - version '1.0.4' + version '1.0.5-SNAPSHOT' def getGitHash = { -> def stdout = new ByteArrayOutputStream() @@ -14,7 +14,7 @@ allprojects { ext { agpVersion = '1.23' minecraftVersion = '1.19.4' - forgeVersion = '45.0.64' + forgeVersion = '45.1.0' apiVersion = '1.5.2' toolsVersion = '1.3.0' mixinVersion = '0.8.5'