blob: 9cfbd886b308809478fde4902cfa39ca2fed6a8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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()
}
|