From 6940075a4c2871e9788176355b5866681fdf8cdb Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Mon, 25 Dec 2023 14:43:13 +0100 Subject: [PATCH] Adding missing fill syntax --- src/Lib/Data/Vanilla/fill.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/Lib/Data/Vanilla/fill.ts b/src/Lib/Data/Vanilla/fill.ts index 59bf678..16dbf71 100644 --- a/src/Lib/Data/Vanilla/fill.ts +++ b/src/Lib/Data/Vanilla/fill.ts @@ -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 }, + ], + }, ]; \ No newline at end of file