diff --git a/commands/random-seed/friendship.js b/commands/random-seed/friendship.js index b7b0a140..ecd83b21 100644 --- a/commands/random-seed/friendship.js +++ b/commands/random-seed/friendship.js @@ -55,7 +55,7 @@ module.exports = class FriendshipCommand extends Command { let level; const owner = this.client.isOwner(first) || this.client.isOwner(second); const authorUser = first.id === msg.author.id || second.id === msg.author.id; - if (owner) { + if (owner && (first.id === this.client.user.id || second.id === this.client.user.id)) { if (authorUser) level = 100; else level = 0; } else { diff --git a/commands/random-seed/ship.js b/commands/random-seed/ship.js index bbcde93b..4bf7188f 100644 --- a/commands/random-seed/ship.js +++ b/commands/random-seed/ship.js @@ -55,7 +55,7 @@ module.exports = class ShipCommand extends Command { let level; const owner = this.client.isOwner(first) || this.client.isOwner(second); const authorUser = first.id === msg.author.id || second.id === msg.author.id; - if (owner) { + if (owner && (first.id === this.client.user.id || second.id === this.client.user.id)) { level = 0; } else { const calculated = Math.abs(Number.parseInt(BigInt(first.id) - BigInt(second.id), 10));