Motschen's Puddles

Motschen's Puddles

142k Downloads

Client crash when using water bottle.

DreadKyller opened this issue ยท 1 comments

commented

When using the puddle block with a glass bottle I get the following error:

[19:52:19] [Server thread/ERROR]: Encountered an unexpected exception
java.lang.IllegalAccessError: class eu.midnightdust.puddles.block.PuddleBlock tried to access private field net.minecraft.class_1657.field_7503
(eu.midnightdust.puddles.block.PuddleBlock and net.minecraft.class_1657 are in unnamed module of loader net.fabricmc.loader.launch.knot.KnotClassLoader @1130520d)
	at eu.midnightdust.puddles.block.PuddleBlock.method_9534(PuddleBlock.java:55) ~[puddles-1.1.0.jar:?]

The code in question is

if (!player.abilities.creativeMode) {

According to the error abilities is a private field, further supported by:
https://maven.fabricmc.net/docs/yarn-1.17.1+build.1/net/minecraft/entity/player/PlayerEntity.html#abilities

It's likely you should be using getAbilities() which is public, as shown:
https://maven.fabricmc.net/docs/yarn-1.17.1+build.1/net/minecraft/entity/player/PlayerEntity.html#getAbilities()

commented

Fixed in v1.2.0