├── LICENSE ├── README.md ├── commands ├── anti-swear │ ├── addword.js │ ├── delword.js │ ├── set-warn-msg.js │ └── words.js └── info │ ├── help.js │ └── ping.js ├── config.json ├── handlers └── command.js ├── index.js └── package.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/README.md -------------------------------------------------------------------------------- /commands/anti-swear/addword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/commands/anti-swear/addword.js -------------------------------------------------------------------------------- /commands/anti-swear/delword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/commands/anti-swear/delword.js -------------------------------------------------------------------------------- /commands/anti-swear/set-warn-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/commands/anti-swear/set-warn-msg.js -------------------------------------------------------------------------------- /commands/anti-swear/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/commands/anti-swear/words.js -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /commands/info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/commands/info/ping.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/config.json -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/handlers/command.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/legend-js-dev/anti-swear/HEAD/package.json --------------------------------------------------------------------------------