From e7cf1d7735aaa32adc0dc891ecaaff2bafe2a422 Mon Sep 17 00:00:00 2001 From: Cerapter Date: Tue, 7 Aug 2018 20:26:16 +0200 Subject: Discord Rich Presence updated. --- discord_rich_presence.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'discord_rich_presence.h') diff --git a/discord_rich_presence.h b/discord_rich_presence.h index 3c9f2bda..35d5becc 100644 --- a/discord_rich_presence.h +++ b/discord_rich_presence.h @@ -9,7 +9,7 @@ namespace AttorneyOnline { class Discord { private: - const char* APPLICATION_ID = "399779271737868288"; + const char* APPLICATION_ID = "474362730397302823"; std::string server_name, server_id; int64_t timestamp; public: -- cgit From d314b8dd07f72d94724c3902258dfb2641d3435c Mon Sep 17 00:00:00 2001 From: Cerapter Date: Sun, 19 Aug 2018 09:37:34 +0200 Subject: Moved includes out of the CPP files into the header files. Reimplementation of `30a87d23c9c63bed072b3460e7482075dc530b2c` from the old origin. --- discord_rich_presence.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'discord_rich_presence.h') diff --git a/discord_rich_presence.h b/discord_rich_presence.h index 35d5becc..fd2c481e 100644 --- a/discord_rich_presence.h +++ b/discord_rich_presence.h @@ -4,6 +4,11 @@ #include #include +#include +#include + +#include + namespace AttorneyOnline { class Discord -- cgit