Skip to content

Commit

Permalink
chore: update from api-12
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
  • Loading branch information
gabizou committed Oct 25, 2024
2 parents 30a5fb5 + faefbd5 commit 5afbdb1
Showing 1 changed file with 7 additions and 0 deletions.
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 @@ -63,6 +63,7 @@
import org.spongepowered.api.data.type.DripstoneSegment;
import org.spongepowered.api.data.type.DyeColor;
import org.spongepowered.api.data.type.FoxType;
import org.spongepowered.api.data.type.FrogType;
import org.spongepowered.api.data.type.HandPreference;
import org.spongepowered.api.data.type.HorseColor;
import org.spongepowered.api.data.type.HorseStyle;
Expand Down Expand Up @@ -156,6 +157,7 @@
import org.spongepowered.api.entity.living.animal.Turtle;
import org.spongepowered.api.entity.living.animal.Wolf;
import org.spongepowered.api.entity.living.animal.cow.Mooshroom;
import org.spongepowered.api.entity.living.animal.frog.Frog;
import org.spongepowered.api.entity.living.animal.horse.Horse;
import org.spongepowered.api.entity.living.animal.horse.PackHorse;
import org.spongepowered.api.entity.living.animal.horse.llama.Llama;
Expand Down Expand Up @@ -1189,6 +1191,11 @@ public final class Keys {
*/
public static final Key<Value<FoxType>> FOX_TYPE = Keys.key(ResourceKey.sponge("fox_type"), FoxType.class);

/**
* The type of a {@link Frog}.
*/
public static final Key<Value<FrogType>> FROG_TYPE = Keys.key(ResourceKey.sponge("frog_type"), FrogType.class);

/**
* The time (in ticks) an {@link Entity} is frozen.
*/
Expand Down

0 comments on commit 5afbdb1

Please sign in to comment.