Skip to content

Commit

Permalink
Make append in set_banner_pattern function required
Browse files Browse the repository at this point in the history
  • Loading branch information
misode committed Sep 10, 2024
1 parent 4d82a14 commit 23c3f47
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion java/1.17/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
entries: ListNode(
Expand Down
2 changes: 1 addition & 1 deletion java/1.18.2/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.18/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.19.3/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.19.4/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.19/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.20.2/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.20.3/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.20.5/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_book_cover': {
title: Opt(Filterable(SizeLimitedString({ maxLength: 32 }))),
Expand Down
2 changes: 1 addition & 1 deletion java/1.20/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_contents': {
type: StringNode({ validator: 'resource', params: { pool: 'block_entity_type' } }),
Expand Down
2 changes: 1 addition & 1 deletion java/1.21.2/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_book_cover': {
title: Opt(Filterable(SizeLimitedString({ maxLength: 32 }))),
Expand Down
2 changes: 1 addition & 1 deletion java/1.21/src/schemas/Common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ export function initCommonSchemas(schemas: SchemaRegistry, collections: Collecti
color: StringNode({ enum: 'dye_color' })
})
),
append: Opt(BooleanNode())
append: BooleanNode()
},
'minecraft:set_book_cover': {
title: Opt(Filterable(SizeLimitedString({ maxLength: 32 }))),
Expand Down

0 comments on commit 23c3f47

Please sign in to comment.