You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/user-setup/command-conversion/entity-selectors.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ EssentialsX includes a command `/ext` which lets you extinguish a player that is
20
20
21
21
To convert this command, we could use the following `config.yml` file:
22
22
23
-
```yml
23
+
```yaml
24
24
verbose-outputs: false
25
25
create-dispatcher-json: false
26
26
plugins-to-convert:
@@ -44,7 +44,7 @@ However, the above `config.yml` **will not** support the following commands:
44
44
45
45
To handle this, we have to use the conversion with arguments (as described in the [previous section](./single-command-with-args)). For this `ext` command, we want to only use this command on _one or more players_, therefore, we want to use the `api:players` argument which is compatible with one or more players:
Copy file name to clipboardExpand all lines: docs/en/user-setup/command-conversion/single-command.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ To add commands to be converted, add them under the `other-command-to-convert` s
85
85
86
86
In this example, we want to convert the `//set` command from WorldEdit, as well as a custom command `/mycommand`. Note that since WorldEdit's `//set` command has two forward slashes, we ignore the first one (because that is the symbol used to start commands), but must make sure that we include the second one as that is part of WorldEdit's command syntax. This is the following `config.yml` that you would need:
0 commit comments