Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
mrsterner committed Dec 19, 2024
1 parent 8ab5ea8 commit 9356e28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class DataComponentRegistry {
builder.persistent(SoulwovenPouchContents.CODEC).networkSynchronized(SoulwovenPouchContents.STREAM_CODEC));

public static final DeferredHolder<DataComponentType<?>, DataComponentType<SoulwovenBannerPatternData>> SOULWOVEN_BANNER_PATTERN = register("soulwoven_banner_pattern", builder ->
builder.persistent(SoulwovenBannerPatternData.CODEC));
builder.persistent(SoulwovenBannerPatternData.CODEC).networkSynchronized(SoulwovenBannerPatternData.STREAM_CODEC));

public static final DeferredHolder<DataComponentType<?>, DataComponentType<RitualData>> RITUAL_DATA = register("ritual_data", builder ->
builder.persistent(RitualData.CODEC).networkSynchronized(RitualData.STREAM_CODEC));
Expand All @@ -30,7 +30,7 @@ public class DataComponentRegistry {
builder.persistent(Codec.STRING).networkSynchronized(ByteBufCodecs.STRING_UTF8));

public static final DeferredHolder<DataComponentType<?>, DataComponentType<CatalystFlingerState>> CATALYST_LOBBER_STATE = register("catalyst_flinger_state", builder ->
builder.persistent(CatalystFlingerState.CODEC));
builder.persistent(CatalystFlingerState.CODEC).networkSynchronized(CatalystFlingerState.STREAM_CODEC));

public static final DeferredHolder<DataComponentType<?>, DataComponentType<SpiritJarItem.Contents>> SPIRIT_JAR_CONTENTS = register("spirit_jar_contents", builder ->
builder.persistent(SpiritJarItem.Contents.CODEC).networkSynchronized(SpiritJarItem.Contents.STREAM_CODEC));
Expand Down

0 comments on commit 9356e28

Please sign in to comment.