1
0
mirror of https://github.com/GeyserMC/Rainbow.git synced 2025-12-19 14:59:16 +00:00

Fix range dispatch predicate NPE

This commit is contained in:
Eclipse
2025-10-14 13:50:33 +00:00
parent 2a3428229e
commit 6ae5358f73
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
[![Discord](https://img.shields.io/discord/613163671870242838.svg?color=%237289da&label=discord)](https://discord.gg/geysermc)
Rainbow is a client-side Minecraft mod for the Fabric modloader to generate Geyser item mappings and bedrock resourcepacks
for use with Geyser's [custom item API (v2)](https://github.com/geyserMC/geyser/pull/5189). Rainbow is available for Minecraft 1.21.7 and 1.21.8.
for use with Geyser's [custom item API (v2)](https://github.com/geyserMC/geyser/pull/5189). Rainbow is available for Minecraft 1.21.9 and 1.21.10.
Rainbow is currently experimental and capable of the following:

View File

@@ -24,7 +24,7 @@ public record GeyserRangeDispatchPredicate(Property property, float threshold, f
@Override
public Type type() {
return null;
return Type.RANGE_DISPATCH;
}
public interface Property {