Remove Pixi from command descriptions
This commit is contained in:
parent
bfe0c1972c
commit
e6f0816c5f
2 changed files with 6 additions and 6 deletions
|
@ -32,7 +32,7 @@ namespace Pixi.Images
|
|||
{
|
||||
CommandBuilder.Builder()
|
||||
.Name("PixiThicc")
|
||||
.Description("Set the image thickness for Pixi2D. Use this if you'd like add depth to a 2D image after importing. (Pixi)")
|
||||
.Description("Set the image thickness for Pixi2D. Use this if you'd like add depth to a 2D image after importing.")
|
||||
.Action<int>((d) => {
|
||||
if (d > 0)
|
||||
{
|
||||
|
@ -47,7 +47,7 @@ namespace Pixi.Images
|
|||
{
|
||||
CommandBuilder.Builder()
|
||||
.Name("Pixi2D")
|
||||
.Description("Converts an image to blocks. Larger images will freeze your game until conversion completes. (Pixi)")
|
||||
.Description("Converts an image to blocks. Larger images will freeze your game until conversion completes.")
|
||||
.Action<string>(Pixelate2DFile)
|
||||
.Build();
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ namespace Pixi.Images
|
|||
{
|
||||
CommandBuilder.Builder()
|
||||
.Name("PixiText")
|
||||
.Description("Converts an image to coloured text in a new text block. Larger images may cause save issues. (Pixi)")
|
||||
.Description("Converts an image to coloured text in a new text block. Larger images may cause save issues.")
|
||||
.Action<string>(Pixelate2DFileToTextBlock)
|
||||
.Build();
|
||||
}
|
||||
|
@ -65,7 +65,7 @@ namespace Pixi.Images
|
|||
{
|
||||
CommandBuilder.Builder()
|
||||
.Name("PixiConsole")
|
||||
.Description("Converts an image to a ChangeTextBlockCommand in a new console block. The first parameter is the image filepath and the second parameter is the text block id. Larger images may cause save issues. (Pixi)")
|
||||
.Description("Converts an image to a ChangeTextBlockCommand in a new console block. The first parameter is the image filepath and the second parameter is the text block id. Larger images may cause save issues.")
|
||||
.Action<string, string>(Pixelate2DFileToCommand)
|
||||
.Build();
|
||||
}
|
||||
|
|
|
@ -22,7 +22,7 @@ namespace Pixi.Robots
|
|||
{
|
||||
CommandBuilder.Builder()
|
||||
.Name("PixiBotFile")
|
||||
.Description("Converts a robot file from RCBUP into Gamecraft blocks. Larger robots will freeze your game until conversion completes. (Pixi)")
|
||||
.Description("Converts a robot file from RCBUP into Gamecraft blocks. Larger robots will freeze your game until conversion completes.")
|
||||
.Action<string>(ImportRobotFile)
|
||||
.Build();
|
||||
}
|
||||
|
@ -31,7 +31,7 @@ namespace Pixi.Robots
|
|||
{
|
||||
CommandBuilder.Builder()
|
||||
.Name("PixiBot")
|
||||
.Description("Downloads a robot from Robocraft's Factory and converts it into Gamecraft blocks. Larger robots will freeze your game until conversion completes. (Pixi)")
|
||||
.Description("Downloads a robot from Robocraft's Factory and converts it into Gamecraft blocks. Larger robots will freeze your game until conversion completes.")
|
||||
.Action<string>(ImportRobotOnline)
|
||||
.Build();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue