diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-10-31 09:49:42 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-10-31 09:49:42 +0800 |
commit | 48653ec89538f1650106a5e77463412cad4684c2 (patch) | |
tree | 09687cd579462e04d539fd4615369fa6dae13902 /features/stat_next_to_name | |
download | SoopyV2-48653ec89538f1650106a5e77463412cad4684c2.tar.gz SoopyV2-48653ec89538f1650106a5e77463412cad4684c2.tar.bz2 SoopyV2-48653ec89538f1650106a5e77463412cad4684c2.zip |
first commit
Diffstat (limited to 'features/stat_next_to_name')
-rw-r--r-- | features/stat_next_to_name/index.js | 19 | ||||
-rw-r--r-- | features/stat_next_to_name/metadata.json | 8 |
2 files changed, 27 insertions, 0 deletions
diff --git a/features/stat_next_to_name/index.js b/features/stat_next_to_name/index.js new file mode 100644 index 0000000..b7addb9 --- /dev/null +++ b/features/stat_next_to_name/index.js @@ -0,0 +1,19 @@ +/// <reference types="../../../CTAutocomplete" /> +/// <reference lib="es2015" /> +import Feature from "../../featureClass/class"; + +class StatNextToName extends Feature { + constructor() { + super() + } + + onEnable(){ + } + + onDisable(){ + } +} + +module.exports = { + class: new StatNextToName() +}
\ No newline at end of file diff --git a/features/stat_next_to_name/metadata.json b/features/stat_next_to_name/metadata.json new file mode 100644 index 0000000..cd2f79c --- /dev/null +++ b/features/stat_next_to_name/metadata.json @@ -0,0 +1,8 @@ +{ + "name": "Stat next to name", + "description": "Shows a players skyblock stat next to their name in the world", + "isHidden": false, + "isTogglable": true, + "defaultEnabled": true, + "sortA": 0 +}
\ No newline at end of file |