mirror of
https://github.com/TibiNonEst/cauldron-dyeing.git
synced 2024-11-24 03:27:19 -05:00
Update to 1.19.4
This commit is contained in:
parent
a847ba5615
commit
1577d06067
5 changed files with 15 additions and 15 deletions
|
@ -1,9 +1,9 @@
|
|||
# Gradle Properties
|
||||
org.gradle.jvmargs = -Xmx1G
|
||||
org.gradle.parallel = true
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
org.gradle.parallel=true
|
||||
|
||||
# Mod Properties
|
||||
mod_version=1.0.8
|
||||
mod_version=1.0.9
|
||||
maven_group=me.tibinonest.mods
|
||||
archives_base_name=cauldron-dyeing
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
[versions]
|
||||
minecraft = "1.19.3"
|
||||
quilt_mappings = "1.19.3+build.23"
|
||||
fabric_loader = "0.14.14"
|
||||
minecraft = "1.19.4"
|
||||
quilt_mappings = "1.19.4+build.3"
|
||||
fabric_loader = "0.14.17"
|
||||
|
||||
fabric_api = "0.73.2+1.19.3"
|
||||
sodium = "mc1.19.3-0.4.9"
|
||||
fabric_api = "0.75.3+1.19.4"
|
||||
sodium = "mc1.19.4-0.4.10"
|
||||
|
||||
[libraries]
|
||||
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
|
||||
|
@ -17,4 +17,4 @@ sodium = { module = "maven.modrinth:sodium", version.ref = "sodium" }
|
|||
[plugins]
|
||||
fabric_loom = { id = "fabric-loom", version = "1.1.+" }
|
||||
loom_quiltflower = { id = "io.github.juuxel.loom-quiltflower", version = "1.8.+" }
|
||||
grgit = { id = "org.ajoberstar.grgit", version = "5.+" }
|
||||
grgit = { id = "org.ajoberstar.grgit", version = "5.0.+" }
|
||||
|
|
|
@ -5,7 +5,7 @@ import me.tibinonest.mods.cauldron_dyeing.CauldronDyeing;
|
|||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.network.Packet;
|
||||
import net.minecraft.network.packet.Packet;
|
||||
import net.minecraft.network.listener.ClientPlayPacketListener;
|
||||
import net.minecraft.network.packet.s2c.play.BlockEntityUpdateS2CPacket;
|
||||
import net.minecraft.server.world.ServerWorld;
|
||||
|
@ -16,7 +16,7 @@ import org.jetbrains.annotations.Nullable;
|
|||
import java.util.Arrays;
|
||||
|
||||
public class WaterCauldronBlockEntity extends BlockEntity {
|
||||
private final int[] NULL_COLOR = new int[] {-1, -1, -1};
|
||||
private static final int[] NULL_COLOR = new int[] {-1, -1, -1};
|
||||
private int[] color = NULL_COLOR;
|
||||
|
||||
public WaterCauldronBlockEntity(BlockPos pos, BlockState state) {
|
||||
|
|
|
@ -26,7 +26,7 @@ import java.util.Map;
|
|||
@Mixin(CauldronBehavior.class)
|
||||
public interface CauldronBehaviorMixin {
|
||||
@SuppressWarnings("target")
|
||||
@Inject(method = "m_ducbhfos(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;)Lnet/minecraft/util/ActionResult;", at = @At("HEAD"), cancellable = true)
|
||||
@Inject(method = "method_32209", at = @At("HEAD"), cancellable = true)
|
||||
private static void cauldron_dyeing$injectCleanDyeableItem(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, ItemStack stack, CallbackInfoReturnable<ActionResult> cir) {
|
||||
var blockEntity = world.getBlockEntity(pos);
|
||||
var item = stack.getItem();
|
||||
|
@ -43,7 +43,7 @@ public interface CauldronBehaviorMixin {
|
|||
}
|
||||
|
||||
@SuppressWarnings("target")
|
||||
@Inject(method = "m_xrdlazrh(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lnet/minecraft/item/ItemStack;)Lnet/minecraft/util/ActionResult;", at = @At(value = "TAIL"))
|
||||
@Inject(method = "method_32217", at = @At(value = "TAIL"))
|
||||
private static void cauldron_dyeing$injectFillWithWater(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, ItemStack stack, CallbackInfoReturnable<ActionResult> cir) {
|
||||
var blockEntity = world.getBlockEntity(pos);
|
||||
if (blockEntity instanceof WaterCauldronBlockEntity waterCauldron) {
|
||||
|
|
|
@ -24,11 +24,11 @@
|
|||
"cauldron-dyeing.mixins.json"
|
||||
],
|
||||
"depends": {
|
||||
"minecraft": ">=1.19.3",
|
||||
"minecraft": ">=1.19.4",
|
||||
"fabricloader": ">=0.12.0",
|
||||
"fabric-object-builder-api-v1": ">=0.1"
|
||||
},
|
||||
"breaks": {
|
||||
"sodium": "<0.4.9"
|
||||
"sodium": "<0.4.10"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue