From 4d847b20294bac5960ef9117147963a888dc47e9 Mon Sep 17 00:00:00 2001 From: FabianAdrian Date: Sun, 28 Jan 2024 20:02:48 +0200 Subject: [PATCH] fix: add missing slash --- docs/minecraft/minecraft-extras.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/minecraft/minecraft-extras.md b/docs/minecraft/minecraft-extras.md index ca1730a..40b5461 100644 --- a/docs/minecraft/minecraft-extras.md +++ b/docs/minecraft/minecraft-extras.md @@ -76,7 +76,7 @@ You may create an instance with the default styling: ```java // Assuming YourSenderType extends Audience MinecraftHelp help = MinecraftHelp.createNative( - "helpcommand", + "/helpcommand", commandManager ); ``` @@ -85,7 +85,7 @@ You may create an instance with the default styling: ```java MinecraftHelp help = MinecraftHelp.create( - "helpcommand", + "/helpcommand", commandManager, audienceMapper // YourSenderType -> Audience );