aboutsummaryrefslogtreecommitdiff
path: root/features/improvements/index.js
blob: 32b164157c9d4cbed1e2e6579155c66e5adcbe01 (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
28
29
30
31
32
33
34
35
36
37
/// <reference types="../../../CTAutocomplete" />
/// <reference lib="es2015" />
import Feature from "../../featureClass/class";
import ToggleSetting from "../settings/settingThings/toggle";

class Improvements extends Feature {
    constructor() {
        super()
    }

    onEnable(){
        this.initVariables()

        this.betterLineBreaks = new ToggleSetting("Better line breaks", "Changes all dashed lines (-------) in chat into solid lines", true, "better_line_breaks", this)

        this.registerChat("${color}-----------------------------------------------------&r", (color, event)=>{
            if(this.betterLineBreaks.getValue()){
                if(color.length > 6) return
                cancel(event)
                ChatLib.chat(color + "&m" + ChatLib.getChatBreak(" ") + "&r");
            }
        }).trigger.triggerIfCanceled(false)
    }


    initVariables(){
        this.betterLineBreaks = undefined
    }

    onDisable(){
        this.initVariables()
    }
}

module.exports = {
    class: new Improvements()
}