LOVER_USER_ID

This commit is contained in:
Dragon Fire
2021-03-02 17:27:25 -05:00
parent 49003aa33a
commit 1f987befa6
10 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ const { MersenneTwister19937, integer } = require('random-js');
const { createCanvas, loadImage } = require('canvas');
const request = require('node-superfetch');
const path = require('path');
const { GIRLFRIEND_USER_ID } = process.env;
const { LOVER_USER_ID } = process.env;
const thoughts = require('../../assets/json/think-of');
module.exports = class ThinkOfCommand extends Command {
@@ -50,7 +50,7 @@ module.exports = class ThinkOfCommand extends Command {
const self = first.id === second.id;
const owner = this.client.isOwner(first) || this.client.isOwner(second);
const botUser = first.id === this.client.user.id || second.id === this.client.user.id;
const girlfriendUser = first.id === GIRLFRIEND_USER_ID || second.id === GIRLFRIEND_USER_ID;
const girlfriendUser = first.id === LOVER_USER_ID || second.id === LOVER_USER_ID;
if (owner && botUser) {
thought = thoughts[8];
} else if (self) {