diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-06 17:44:58 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-06 17:44:58 +0100 |
commit | 06534f9d09732ed29a6fa6bc48def5f7c2b0b865 (patch) | |
tree | c77dbd01b6538fa6974e72b9a7df038f0dc9017b /src/main/kotlin/util/SkyblockId.kt | |
parent | ee21f2da76ea2218ef6a0c6fefa97befa654d115 (diff) | |
download | Firmament-06534f9d09732ed29a6fa6bc48def5f7c2b0b865.tar.gz Firmament-06534f9d09732ed29a6fa6bc48def5f7c2b0b865.tar.bz2 Firmament-06534f9d09732ed29a6fa6bc48def5f7c2b0b865.zip |
Re-add REI
Diffstat (limited to 'src/main/kotlin/util/SkyblockId.kt')
-rw-r--r-- | src/main/kotlin/util/SkyblockId.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/kotlin/util/SkyblockId.kt b/src/main/kotlin/util/SkyblockId.kt index 059e746..9c9287b 100644 --- a/src/main/kotlin/util/SkyblockId.kt +++ b/src/main/kotlin/util/SkyblockId.kt @@ -2,6 +2,7 @@ package moe.nea.firmament.util +import com.mojang.serialization.Codec import io.github.moulberry.repo.data.NEUIngredient import io.github.moulberry.repo.data.NEUItem import io.github.moulberry.repo.data.Rarity @@ -16,6 +17,9 @@ import net.minecraft.component.type.NbtComponent import net.minecraft.item.ItemStack import net.minecraft.item.Items import net.minecraft.nbt.NbtCompound +import net.minecraft.network.RegistryByteBuf +import net.minecraft.network.codec.PacketCodec +import net.minecraft.network.codec.PacketCodecs import net.minecraft.util.Identifier import moe.nea.firmament.repo.ItemCache.asItemStack import moe.nea.firmament.repo.set @@ -68,6 +72,9 @@ value class SkyblockId(val neuItem: String) { val NULL: SkyblockId = SkyblockId("null") val PET_NULL: SkyblockId = SkyblockId("null_pet") private val illlegalPathRegex = "[^a-z0-9_.-/]".toRegex() + val CODEC = Codec.STRING.xmap({ SkyblockId(it) }, { it.neuItem }) + val PACKET_CODEC: PacketCodec<in RegistryByteBuf, SkyblockId> = + PacketCodecs.STRING.xmap({ SkyblockId(it) }, { it.neuItem }) } } |