From 6c2ac0bc2917e5c48531760feaa53e582497d8fd Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 3 Feb 2019 20:10:28 +0100 Subject: [PATCH] This should be a function call --- discord/discord.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/discord.c b/discord/discord.c index cbef81b838..c3add31817 100644 --- a/discord/discord.c +++ b/discord/discord.c @@ -76,14 +76,14 @@ DiscordRichPresence discord_presence; char* discord_get_own_username(void) { - if (discord_is_ready) + if (discord_is_ready()) return user_name; return NULL; } char* discord_get_own_avatar(void) { - if (discord_is_ready) + if (discord_is_ready()) return user_avatar; return NULL; }