Skip to content

Commit

Permalink
fix wrong keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Faithcaio committed Apr 22, 2023
1 parent 224258c commit 5bafc99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/spongepowered/api/data/Keys.java
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ public final class Keys {
* The carvers of a {@link Biome} used during world generation.
* Readonly
*/
public static final Key<MapValue<CarvingStep, List<Carver>>> CARVERS = Keys.mapKey(ResourceKey.sponge("is_placing_disabled"), TypeToken.get(CarvingStep.class), new TypeToken<List<Carver>>() {});
public static final Key<MapValue<CarvingStep, List<Carver>>> CARVERS = Keys.mapKey(ResourceKey.sponge("carvers"), TypeToken.get(CarvingStep.class), new TypeToken<List<Carver>>() {});

/**
* The current casting time of a {@link Spellcaster}.
Expand Down Expand Up @@ -994,7 +994,7 @@ public final class Keys {
* The features to place during decoration steps during world generation for a {@link Biome}
* Readonly
*/
public static final Key<MapValue<DecorationStep, List<PlacedFeature>>> FEATURES = Keys.mapKey(ResourceKey.sponge("is_placing_disabled"), TypeToken.get(DecorationStep.class), new TypeToken<List<PlacedFeature>>() {});
public static final Key<MapValue<DecorationStep, List<PlacedFeature>>> FEATURES = Keys.mapKey(ResourceKey.sponge("features"), TypeToken.get(DecorationStep.class), new TypeToken<List<PlacedFeature>>() {});

/**
* The {@link FireworkEffect}s of a
Expand Down

0 comments on commit 5bafc99

Please sign in to comment.