Skip to content

Commit 2f0bcfa

Browse files
committed
Fix compilation
1 parent 5c1a862 commit 2f0bcfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bedrock-codec/src/main/java/org/cloudburstmc/protocol/bedrock/codec/v471/BedrockCodecHelper_v471.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected ItemStackRequestAction readRequestActionData(ByteBuf byteBuf, ItemStac
2424
case CRAFT_REPAIR_AND_DISENCHANT:
2525
return new CraftGrindstoneAction(VarInts.readUnsignedInt(byteBuf), 0, VarInts.readInt(byteBuf));
2626
case CRAFT_LOOM:
27-
return new CraftLoomAction(this.readString(byteBuf));
27+
return new CraftLoomAction(this.readString(byteBuf), 0);
2828
default:
2929
return super.readRequestActionData(byteBuf, type);
3030
}

0 commit comments

Comments
 (0)