Make mixin abstract, update TODO

This commit is contained in:
FlorianMichael 2024-06-03 03:20:47 +02:00
parent 4b2cf8379d
commit f538c56b0e
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
2 changed files with 2 additions and 1 deletions

View File

@ -40,6 +40,7 @@ import java.util.concurrent.CompletableFuture;
* - MouseHandling changed (not sure if relevant)
* - Command arguments (Probably not everything worth, but least them with nbt)
* - Entity attachment calculation got changed completely
* - Particle handling has slightly changed
*
* TODO | General
* - Make recipe fixes dynamic instead of a data dump in java classes

View File

@ -28,7 +28,7 @@ import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
@Mixin(NetworkStateTransitions.class)
public class MixinNetworkStateTransitions {
public abstract class MixinNetworkStateTransitions {
@WrapWithCondition(method = "method_56353", at = @At(value = "INVOKE", target = "Lio/netty/channel/ChannelConfig;setAutoRead(Z)Lio/netty/channel/ChannelConfig;", remap = false))
private static boolean dontChangeAutoRead(ChannelConfig instance, boolean b) {