Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/main/java/org/spongepowered/api/data/Keys.java
Original file line number Diff line number Diff line change
Expand Up @@ -2437,6 +2437,13 @@ public final class Keys {
*/
public static final Key<Value<Ticks>> MIN_SPAWN_DELAY = Keys.key(ResourceKey.sponge("min_spawn_delay"), Ticks.class);

/**
* Location of the resource pack model for an {@link ItemStack}.
*
* @see <a href="https://minecraft.wiki/w/Model">Model</a>
*/
public static final Key<Value<ResourceKey>> MODEL = Keys.key(ResourceKey.sponge("model"), ResourceKey.class);

/**
* The moisture value of a {@link BlockTypes#FARMLAND} {@link BlockState}.
*/
Expand Down