From 7046a53800bfeb00748c099079e964f84f95de7e Mon Sep 17 00:00:00 2001 From: Scribble Date: Sat, 3 May 2025 16:17:22 +0200 Subject: [PATCH] Add missing commands to README --- README.md | 3 +++ .../com/minecrafttas/tasmod/commands/CommandFileCommand.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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