Update info.js

This commit is contained in:
Aayu5h 2023-02-14 20:35:38 +05:30 committed by GitHub
parent a3d8ecebfa
commit e212e5a93c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@ const Discord = require('discord.js');
module.exports = async (client, interaction, args) => { module.exports = async (client, interaction, args) => {
let verifLevels = { let verifLevels = {
"NONE": "None", "0": "None",
"LOW": "Low", "1": "Low",
"MEDIUM": "Medium", "2": "Medium",
"HIGH": "(╯°□°)╯︵ ┻━┻", "3": "(╯°□°)╯︵ ┻━┻",
"VERY_HIGH": "┻━┻ミヽ(ಠ益ಠ)ノ彡┻━┻" "4": "┻━┻ミヽ(ಠ益ಠ)ノ彡┻━┻"
} }
let region = { let region = {
@ -137,4 +137,4 @@ module.exports = async (client, interaction, args) => {
}, interaction) }, interaction)
} }