diff options
Diffstat (limited to 'features/dungeonRoutes/index.js')
-rw-r--r-- | features/dungeonRoutes/index.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/features/dungeonRoutes/index.js b/features/dungeonRoutes/index.js new file mode 100644 index 0000000..9cfbd88 --- /dev/null +++ b/features/dungeonRoutes/index.js @@ -0,0 +1,27 @@ +/// <reference types="../../../CTAutocomplete" /> +/// <reference lib="es2015" /> +import Feature from "../../featureClass/class"; +import SettingBase from "../settings/settingThings/settingBase"; + + +class DungeonRoutes extends Feature { + constructor() { + super() + } + + onEnable() { + if (Player.getUUID().toString() !== "dc8c3964-7b29-4e03-ae9e-d13ebd65dd29") { + new SettingBase("Coming soontm", "maby", undefined, "coming_soontm", this) + return + } + } + + onDisable() { + + } + +} + +module.exports = { + class: new DungeonRoutes() +} |