diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-06-26 03:16:08 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-06-26 03:18:29 -0400 |
commit | 4d0eb756d20afc89465dd39c26950c1b00713d65 (patch) | |
tree | df5c65b8773e92efa98901eb3fb2f690877ae6f7 /discord | |
parent | eab0e100c4368b3a9b42c0f8cc0f6cc4faf0f1bc (diff) | |
download | abaddon-portaudio-4d0eb756d20afc89465dd39c26950c1b00713d65.tar.gz abaddon-portaudio-4d0eb756d20afc89465dd39c26950c1b00713d65.zip |
get rid of something bad
Diffstat (limited to 'discord')
-rw-r--r-- | discord/discord.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/discord/discord.cpp b/discord/discord.cpp index 8c202a7..78036ad 100644 --- a/discord/discord.cpp +++ b/discord/discord.cpp @@ -1228,11 +1228,6 @@ void DiscordClient::ProcessNewGuild(GuildData &guild) { } void DiscordClient::HandleGatewayReady(const GatewayMessage &msg) { - auto fp = std::fopen("ready.json", "w"); - auto cum = msg.Data.dump(4); - std::fwrite(cum.c_str(), 1, cum.size(), fp); - std::fclose(fp); - m_ready_received = true; ReadyEventData data = msg.Data; for (auto &g : data.Guilds) |