1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-19 00:21:11 +00:00

Added changePresence arguments

This commit is contained in:
WorstAquaPlayer 2021-02-27 16:58:07 -03:00
parent 1eb5ae69de
commit 3d74f869d3

View file

@ -57,13 +57,16 @@ class DiscordClient
trace("Discord Client initialized");
}
public static function changePresence(details:String, state:Null<String>)
public static function changePresence(details:String, state:Null<String>, ?smallImageKey : String, ?startTimestamp: Int, ?endTimestamp: Int)
{
DiscordRpc.presence({
details: details,
state: state,
largeImageKey: 'icon',
largeImageText: "Friday Night Funkin'"
largeImageText: "Friday Night Funkin'",
smallImageKey : smallImageKey,
startTimestamp : startTimestamp,
endTimestamp : endTimestamp
});
}
}