From cdede94083a6a39e4a36b8b5492404db60c5f571 Mon Sep 17 00:00:00 2001 From: Uladzislau Lapko <36882979+Vladisl0ve@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:52:47 +0200 Subject: [PATCH] Fix typo in mod-structure.md Fixed Warning typo for .md template --- docs/modding-ctjs/mod-structure.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modding-ctjs/mod-structure.md b/docs/modding-ctjs/mod-structure.md index 9ddccd6..fc6dce3 100644 --- a/docs/modding-ctjs/mod-structure.md +++ b/docs/modding-ctjs/mod-structure.md @@ -4,7 +4,7 @@ Ct.js is moddable, and the process of making new modules is pretty easy! Modules Any module is a directory with `module.json` file inside and any additional files needed for your module to work. -:::warn +::: warning The name of the directory itself is the codename of your module. For example, if you look into ct.js folder/data/ct.libs, you will see that the codename of ct.place library is just `place`. The name should be unique, should have lowercase latin letters and (optionally) dots in it, and must not contain underscores and other special characters, like quotes and commas.