diff --git a/Pixi/Images/ImageCommands.cs b/Pixi/Images/ImageCommands.cs index d8de541..746a305 100644 --- a/Pixi/Images/ImageCommands.cs +++ b/Pixi/Images/ImageCommands.cs @@ -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((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(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(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(Pixelate2DFileToCommand) .Build(); } diff --git a/Pixi/Robots/RobotCommands.cs b/Pixi/Robots/RobotCommands.cs index 20c955e..b8baa8a 100644 --- a/Pixi/Robots/RobotCommands.cs +++ b/Pixi/Robots/RobotCommands.cs @@ -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(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(ImportRobotOnline) .Build(); }