This commit is contained in:
Chipmunk 2023-01-19 19:04:51 -05:00
parent c75b0c1d09
commit 414a990b74

View file

@ -24,7 +24,7 @@ public class EchoCommand extends Command {
public int echo (CommandContext<CommandSource> context) {
final CommandSource source = context.getSource();
final String text = getString(context, "echo");
final String text = getString(context, "text");
source.sendOutput(Component.text(text));