mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-05 19:47:00 -04:00
Fix syncing block entity attachments on load. (#4390)
* Fix syncing block entity attachments on load. Closes #4389 * Return success (cherry picked from commit7e31339eff
) (cherry picked from commit8212661064
)
This commit is contained in:
parent
5ca99b905c
commit
9ed317f52b
1 changed files with 5 additions and 3 deletions
|
@ -28,6 +28,7 @@ import org.spongepowered.asm.mixin.Unique;
|
|||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.registry.DynamicRegistryManager;
|
||||
import net.minecraft.registry.RegistryWrapper;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.world.World;
|
||||
|
@ -100,7 +101,7 @@ abstract class AttachmentTargetsMixin implements AttachmentTargetImpl {
|
|||
if (this.fabric_shouldTryToSync() && this.fabric_dataAttachments != null) {
|
||||
this.fabric_dataAttachments.forEach((type, value) -> {
|
||||
if (type.isSynced()) {
|
||||
acknowledgeSynced(type, value);
|
||||
acknowledgeSynced(type, value, wrapperLookup);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -117,8 +118,9 @@ abstract class AttachmentTargetsMixin implements AttachmentTargetImpl {
|
|||
}
|
||||
|
||||
@Unique
|
||||
private void acknowledgeSynced(AttachmentType<?> type, Object value) {
|
||||
acknowledgeSyncedEntry(type, AttachmentChange.create(fabric_getSyncTargetInfo(), type, value, fabric_getDynamicRegistryManager()));
|
||||
private void acknowledgeSynced(AttachmentType<?> type, Object value, RegistryWrapper.WrapperLookup wrapperLookup) {
|
||||
DynamicRegistryManager dynamicRegistryManager = (wrapperLookup instanceof DynamicRegistryManager drm) ? drm : fabric_getDynamicRegistryManager();
|
||||
acknowledgeSyncedEntry(type, AttachmentChange.create(fabric_getSyncTargetInfo(), type, value, dynamicRegistryManager));
|
||||
}
|
||||
|
||||
@Unique
|
||||
|
|
Loading…
Add table
Reference in a new issue