From 59deef5a9cb68781e59904ce8087808852cca03a Mon Sep 17 00:00:00 2001 From: Zack Date: Sat, 7 Nov 2020 17:13:15 -0500 Subject: [PATCH] Updated Creating Plugins (markdown) --- Creating-Plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Creating-Plugins.md b/Creating-Plugins.md index 4feb155..3fb2e4a 100644 --- a/Creating-Plugins.md +++ b/Creating-Plugins.md @@ -4,7 +4,7 @@ 2. The file must be named as `pluginname.plugin.js`, the plugin name can be whatever you want. 3. Plugin files require a special header ([[see this page for details|Plugin-and-Theme-METAs]]) 4. The name defined in the header must match the variable/classname -5. Plugins must implement the [following functions](#required-functions): `getName`*, `getDescription`*, `getVersion`*, `getAuthor`*, `start` and `stop`. (*These functions are not needed if you add them to the META described in point 3) +5. Plugins must implement the [following functions](#required-functions): `getName`^, `getDescription`^, `getVersion`^, `getAuthor`^, `start` and `stop`. (^These functions are not needed if you add them to the META described in point 3) Optionally, you may implement `getSettingsPanel`, `load`, `observer`, and `onSwitch`. More details on each function below. 6. Plugins can make use of the [`BdApi`](#bdapi) object described [below](#bdapi). 7. Plugins can make use of any node modules or Discord modules (through webpack).