Skip to content

Commit

Permalink
Fix random_spread in 1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollounknowndev committed Jul 24, 2024
1 parent b40be69 commit 67dbf65
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion java/1.20.3/src/schemas/worldgen/Structure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ export function initStructureSchemas(schemas: SchemaRegistry, collections: Colle
)
},
'minecraft:random_group': {
groups: ListNode(Reference('pool_alias_binding'))
groups: ListNode(ObjectNode({
weight: NumberNode({ integer: true }),
data: ListNode(Reference('pool_alias_binding')),
}))
}
}
}, { context: 'pool_alias_binding' }), {
Expand Down

0 comments on commit 67dbf65

Please sign in to comment.