1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-08-30 10:25:00 +00:00

Compare commits

...

5 commits

Author SHA1 Message Date
Cameron Taylor faaf064e37
Merge pull request #691 from actuallyasmartname/master
Make link for downloads the latest version, not the Ludum Dare prototype
2021-04-02 15:27:14 -07:00
Cameron Taylor 24ce01a15f
Merge pull request #695 from KadeDev/patch-1
Discord RPC fix
2021-04-02 14:39:42 -07:00
Kade M e1c6f0583d
add the fucntioln 2021-04-02 14:37:58 -07:00
Kade M e8f50fbf7a
close the thing on the dead 2021-04-02 14:35:14 -07:00
actuallyasmartname 2466115fff
Make link for downloads the latest version, not the Ludum Dare prototype 2021-03-31 18:52:07 -04:00
3 changed files with 10 additions and 1 deletions

View file

@ -20,7 +20,7 @@ THESE INSTRUCTIONS ARE FOR COMPILING THE GAME'S SOURCE CODE!!!
IF YOU WANT TO JUST DOWNLOAD AND INSTALL AND PLAY THE GAME NORMALLY, GO TO ITCH.IO TO DOWNLOAD THE GAME FOR PC, MAC, AND LINUX!!
https://ninja-muffin24.itch.io/friday-night-funkin
https://ninja-muffin24.itch.io/funkin
IF YOU WANT TO COMPILE THE GAME YOURSELF, CONTINUE READING!!!

View file

@ -28,6 +28,11 @@ class DiscordClient
DiscordRpc.shutdown();
}
public static function shutdown()
{
DiscordRpc.shutdown();
}
static function onReady()
{
DiscordRpc.presence({

View file

@ -96,6 +96,10 @@ class TitleState extends MusicBeatState
#if desktop
DiscordClient.initialize();
Application.current.onExit.add (function (exitCode) {
DiscordClient.shutdown();
});
#end
}