We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e5a2ce commit d4641e1Copy full SHA for d4641e1
src/main/java/org/spongepowered/api/data/Keys.java
@@ -2437,6 +2437,13 @@ public final class Keys {
2437
*/
2438
public static final Key<Value<Ticks>> MIN_SPAWN_DELAY = Keys.key(ResourceKey.sponge("min_spawn_delay"), Ticks.class);
2439
2440
+ /**
2441
+ * Location of the resource pack model for an {@link ItemStack}.
2442
+ *
2443
+ * @see <a href="https://minecraft.wiki/w/Model">Model</a>
2444
+ */
2445
+ public static final Key<Value<ResourceKey>> MODEL = Keys.key(ResourceKey.sponge("model"), ResourceKey.class);
2446
+
2447
/**
2448
* The moisture value of a {@link BlockTypes#FARMLAND} {@link BlockState}.
2449
0 commit comments