aboutsummaryrefslogtreecommitdiff
path: root/commands/toggle.js
blob: a5e0ec2150427424e16ccbd2ecdcb28e091df15a (plain)
1
2
3
4
5
6
7
8
9
import constants from "../util/constants"
const PREFIX = constants.PREFIX

export function toggle()
{
    constants.data.cwToggle = !constants.data.cwToggle
    constants.data.save()
    ChatLib.chat(`${PREFIX}&bSet gui to: &3${constants.data.cwToggle}`)
}