Skip to content

Commit

Permalink
Adding missing fill syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Dec 25, 2023
1 parent 1ab62f9 commit 6940075
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/Lib/Data/Vanilla/fill.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,19 @@ export const fill: CommandInfo[] = [
{ text: "mode", type: ParameterType.fillMode, required: false },
],
},
{
name: "fill",
documentation: "Fills a region with a specific block.",
parameters: [
{ text: "fill", type: ParameterType.keyword, required: true },
{ text: "from x", type: ParameterType.coordinate, required: true },
{ text: "from y", type: ParameterType.coordinate, required: true },
{ text: "from z", type: ParameterType.coordinate, required: true },
{ text: "to x", type: ParameterType.coordinate, required: true },
{ text: "to y", type: ParameterType.coordinate, required: true },
{ text: "to z", type: ParameterType.coordinate, required: true },
{ text: "tile name", type: ParameterType.block, required: true },
{ text: "mode", type: ParameterType.fillMode, required: false },
],
},
];

0 comments on commit 6940075

Please sign in to comment.