Skip to content

Commit 4edb542

Browse files
authored
Fix incorrect sentence in safe suggestions (CommandAPI#601)
1 parent c3ff409 commit 4edb542

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docssrc/src/safeargumentsuggestions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Say we wanted to remove a potion effect from a player. To do this, we'll use the
216216
/removeeffect <player> <potioneffect>
217217
```
218218

219-
Now, we don't want to remove a potion effect that already exists on a player, so instead we'll use the safe arguments to find a list of potion effects on the target player and then only suggest those potion effects. To do this, we'll use the `previousArguments()` method, as it allows us to access the previously defined `<player>` argument.
219+
Now, we don't want to remove a potion effect that doesn't exist on a player, so instead we'll use the safe arguments to find a list of potion effects on the target player and then only suggest those potion effects. To do this, we'll use the `previousArguments()` method, as it allows us to access the previously defined `<player>` argument.
220220

221221
<div class="multi-pre">
222222

0 commit comments

Comments
 (0)