mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-28 15:57:42 +00:00
Added changePresence arguments
This commit is contained in:
parent
1eb5ae69de
commit
3d74f869d3
|
@ -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
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue