Fixed RPC icon and included RPC lib for mac

pull/3/head
Oshisaure 2020-10-13 00:39:13 +01:00
parent 1f78bb9e99
commit 6233ffb12d
2 changed files with 13 additions and 11 deletions

BIN
libs/discord-rpc.dylib Normal file

Binary file not shown.

View File

@ -34,15 +34,6 @@ if success then
RPC.initialize(DiscordRPC.appId, true)
local now = os.time(os.date("*t"))
RPC.updatePresence({
startTimestamp = now,
details = "Loading game...",
state = "",
largeImageKey = "icon2",
largeImageText = "Original game by Joe Zeng",
smallImageKey = "",
smallImageText = ""
})
DiscordRPC.RPC = RPC
print("DiscordRPC successfully loaded.")
@ -51,6 +42,17 @@ else
print(RPC)
end
DiscordRPC.presence = {
startTimestamp = now,
details = "Loading game...",
state = "",
largeImageKey = "icon2",
largeImageText = "Original game by Joe Zeng",
smallImageKey = "",
smallImageText = ""
}
function DiscordRPC:update(newstuff)
if self.loaded then self.RPC.updatePresence(newstuff) end
end
for k, v in pairs(newstuff) do self.presence[k] = v end
if self.loaded then self.RPC.updatePresence(self.presence) end
end