Skip to content

Commit 252f572

Browse files
committed
Fix compatibility with Lithium #4254
1 parent c6ca386 commit 252f572

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mixins/java/org/spongepowered/common/mixin/core/nbt/CompoundTagMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public abstract class CompoundTagMixin {
4545
@Shadow @Final private Map<String, Tag> tags;
4646
// @formatter:on
4747

48-
@ModifyArg(method = "copy()Lnet/minecraft/nbt/CompoundTag;", at = @At(value = "INVOKE", target = "Ljava/util/Map;forEach(Ljava/util/function/BiConsumer;)V"))
48+
@ModifyArg(method = "copy()Lnet/minecraft/nbt/CompoundTag;", at = @At(value = "INVOKE", target = "Ljava/util/Map;forEach(Ljava/util/function/BiConsumer;)V"), require = 0)
4949
private BiConsumer<String, Tag> impl$checkForOverflowOnCopy(final BiConsumer<String, Tag> putCopy) {
5050
return (key, tag) -> {
5151
try {

0 commit comments

Comments
 (0)