Change vector command converter wording. (#2059)

Hopefully will cut down on questions of how to use `//pos x,y,z`.
This commit is contained in:
wizjany 2022-03-12 21:38:50 -05:00 committed by GitHub
parent f50a81fcc4
commit 5843aa50e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -56,7 +56,7 @@ public static void register(CommandManager commandManager) {
}
throw new AssertionError("Expected 2 or 3 components");
},
"block vector with x,z or x,y,z"
"block vector in the form x,z or x,y,z"
));
}

View File

@ -48,7 +48,7 @@ public class VectorConverter<C, T> implements ArgumentConverter<T> {
INT_CONVERTER,
3,
cmps -> BlockVector3.at(cmps.get(0), cmps.get(1), cmps.get(2)),
"block vector with x, y, and z"
"block vector in the form x,y,z"
);
public static void register(CommandManager commandManager) {
@ -58,14 +58,14 @@ public static void register(CommandManager commandManager) {
INT_CONVERTER,
2,
cmps -> BlockVector2.at(cmps.get(0), cmps.get(1)),
"block vector with x and z"
"block vector in the form x,z"
));
commandManager.registerConverter(Key.of(Vector2.class),
new VectorConverter<>(
doubleConverter,
2,
cmps -> Vector2.at(cmps.get(0), cmps.get(1)),
"vector with x and z"
"vector in the form x,z"
));
commandManager.registerConverter(Key.of(BlockVector3.class), BLOCK_VECTOR_3_CONVERTER);
commandManager.registerConverter(Key.of(Vector3.class),
@ -73,7 +73,7 @@ public static void register(CommandManager commandManager) {
doubleConverter,
3,
cmps -> Vector3.at(cmps.get(0), cmps.get(1), cmps.get(2)),
"vector with x, y, and z"
"vector in the form x,y,z"
));
}