diff --git a/README.md b/README.md index 7a129fda..091f0b8e 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ This mod can record and play back `/fullrecord, /fullplay` - Same as record/play however it will quit to the main menu first. `/restartandplay ` - Quits Minecraft completely. When restarting, the specified file will be loaded and played back, when the menu appears. + +`/filecommand ` - Enables/Disables certain FileCommands in the TASfile, which are special lines in the TASfile that will trigger actions, when the playback reaches over that point. +`/folder ` - Opens the folder for tasfiles or savestates in the file explorer ### Keybinds F10 - Stops either a playback or a recording. diff --git a/src/main/java/com/minecrafttas/tasmod/commands/CommandFileCommand.java b/src/main/java/com/minecrafttas/tasmod/commands/CommandFileCommand.java index 07c649f1..7b0bbff2 100644 --- a/src/main/java/com/minecrafttas/tasmod/commands/CommandFileCommand.java +++ b/src/main/java/com/minecrafttas/tasmod/commands/CommandFileCommand.java @@ -52,7 +52,7 @@ public String getName() { @Override public String getUsage(ICommandSender iCommandSender) { - return "/filecommand [enable|disable]"; + return "/filecommand "; } @Override