Skip to content

Commit

Permalink
Fix biome carvers
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollounknowndev committed Aug 30, 2024
1 parent 42a90cc commit d85b95a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions java/1.21.2/src/schemas/worldgen/Biome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,7 @@ export function initBiomeSchemas(schemas: SchemaRegistry, collections: Collectio
})
})
),
carvers: MapNode(
StringNode({ enum: ['air', 'liquid'] }),
Mod(Tag({ resource: '$worldgen/configured_carver', inlineSchema: 'configured_carver' }), {
default: () => ['minecraft:cave']
})
),
carvers: Tag({ resource: '$worldgen/configured_carver', inlineSchema: 'configured_carver' }),
features: ListNode(
Mod(Tag({ resource: '$worldgen/placed_feature', inlineSchema: 'placed_feature' }), { category: () => 'predicate' }),
{ maxLength: 11 }
Expand Down

0 comments on commit d85b95a

Please sign in to comment.