Update commands/tps.js

This commit is contained in:
4Parker02991 2024-01-27 11:11:54 -05:00
parent d1d4a44a62
commit d3cfdf1838

View file

@ -12,7 +12,7 @@ module.exports = {
const args = context.arguments const args = context.arguments
switch (args[0]) { switch (args[0]) {
case 'on': case 'on':
if(bot.options.Core.CorelessMode){ if(!bot.options.Core.enabled){
throw new CommandError('Coreless mode is active can not execute command!') throw new CommandError('Coreless mode is active can not execute command!')
}else{ }else{
bot.tps.on() bot.tps.on()
@ -21,7 +21,7 @@ module.exports = {
} }
break break
case 'off': case 'off':
if(bot.options.Core.CorelessMode){ if(!bot.options.Core.enabled){
throw new CommandError('Coreless mode is active can not execute command!') throw new CommandError('Coreless mode is active can not execute command!')
}else{ }else{
bot.tps.off() bot.tps.off()