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).