mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-18 01:46:11 +00:00
Update upstream
5843aa5 Change vector command converter wording. (2059)
This commit is contained in:
parent
5a97b23347
commit
d400a470a1
@ -59,7 +59,7 @@ public class Chunk3dVectorConverter<C, T> implements ArgumentConverter<T> {
|
|||||||
}
|
}
|
||||||
throw new AssertionError("Expected 2 or 3 components");
|
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"
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -48,7 +48,7 @@ public class VectorConverter<C, T> implements ArgumentConverter<T> {
|
|||||||
INT_CONVERTER,
|
INT_CONVERTER,
|
||||||
3,
|
3,
|
||||||
cmps -> BlockVector3.at(cmps.get(0), cmps.get(1), cmps.get(2)),
|
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) {
|
public static void register(CommandManager commandManager) {
|
||||||
@ -60,7 +60,7 @@ public class VectorConverter<C, T> implements ArgumentConverter<T> {
|
|||||||
INT_CONVERTER,
|
INT_CONVERTER,
|
||||||
2,
|
2,
|
||||||
cmps -> BlockVector2.at(cmps.get(0), cmps.get(1)),
|
cmps -> BlockVector2.at(cmps.get(0), cmps.get(1)),
|
||||||
"block vector with x and z"
|
"block vector in the form x,z"
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
commandManager.registerConverter(
|
commandManager.registerConverter(
|
||||||
@ -69,7 +69,7 @@ public class VectorConverter<C, T> implements ArgumentConverter<T> {
|
|||||||
doubleConverter,
|
doubleConverter,
|
||||||
2,
|
2,
|
||||||
cmps -> Vector2.at(cmps.get(0), cmps.get(1)),
|
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(BlockVector3.class), BLOCK_VECTOR_3_CONVERTER);
|
||||||
@ -79,7 +79,7 @@ public class VectorConverter<C, T> implements ArgumentConverter<T> {
|
|||||||
doubleConverter,
|
doubleConverter,
|
||||||
3,
|
3,
|
||||||
cmps -> Vector3.at(cmps.get(0), cmps.get(1), cmps.get(2)),
|
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"
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user