aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commands/info/userInfo.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/info/userInfo.ts b/src/commands/info/userInfo.ts
index 66eabe1..a129182 100644
--- a/src/commands/info/userInfo.ts
+++ b/src/commands/info/userInfo.ts
@@ -67,7 +67,7 @@ export default class UserInfoCommand extends BushCommand {
const flags = user.flags?.toArray();
if (flags) {
flags.forEach((f) => {
- if (client.consts.mappings.userFlags[f]) {
+ if (client.consts.mappings.userFlags[f] !== undefined) {
emojis.push(client.consts.mappings.userFlags[f]);
} else emojis.push(`\`${f}\``);
});