From 4e177ff198bca921e43e95ac9681daf7800b62a1 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 22 Jul 2024 01:26:07 +0000 Subject: [PATCH] docs: Updated medusa docs a little bit --- docs/medusa/creating-a-medusa.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/medusa/creating-a-medusa.md b/docs/medusa/creating-a-medusa.md index 617ee30bb..b01a6e2bd 100644 --- a/docs/medusa/creating-a-medusa.md +++ b/docs/medusa/creating-a-medusa.md @@ -156,7 +156,7 @@ This section will guide you through how to create a simple custom medusa. You ca - + all @@ -180,8 +180,7 @@ This section will guide you through how to create a simple custom medusa. You ca ``` - Create a `MySnek.cs` file and add the following contents ```cs -using Nadeko.Snake; -using NadekoBot; +using NadekoBot.Medusa; using Discord; public sealed class MySnek : Snek @@ -199,14 +198,15 @@ public sealed class MySnek : Snek } } ``` -- Create `res.yml` and `cmds.yml` files with the following contents -`res.yml` +- Create `res.yml` and `cmds.yml` files with the following contents + +`res.yml` ```yml medusa.description: "This is my medusa's description" hello: "Hello {0}, from res.yml!" ``` -`cmds.yml` +`cmds.yml` ```yml hello: desc: "This is a basic hello command"