Skip to content

Commit 5bafc99

Browse files
committed
fix wrong keys
1 parent 224258c commit 5bafc99

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/org/spongepowered/api/data

1 file changed

+2
-2
lines changed

src/main/java/org/spongepowered/api/data/Keys.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ public final class Keys {
630630
* The carvers of a {@link Biome} used during world generation.
631631
* Readonly
632632
*/
633-
public static final Key<MapValue<CarvingStep, List<Carver>>> CARVERS = Keys.mapKey(ResourceKey.sponge("is_placing_disabled"), TypeToken.get(CarvingStep.class), new TypeToken<List<Carver>>() {});
633+
public static final Key<MapValue<CarvingStep, List<Carver>>> CARVERS = Keys.mapKey(ResourceKey.sponge("carvers"), TypeToken.get(CarvingStep.class), new TypeToken<List<Carver>>() {});
634634

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

999999
/**
10001000
* The {@link FireworkEffect}s of a

0 commit comments

Comments
 (0)