Skip to content
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.

Commit

Permalink
[Change] RPCのバグ修正、メッセージ更新
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiro527 committed Nov 28, 2021
1 parent 00e3e92 commit dcadc8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/html/splashWindow.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
<body>
<div id='appVersion'></div>
<div id='devMsg'>
Thanks for 30k downloads!
I'm looking forward to play FACEIT!<br>
Good Luck, Have Fun!
</div>
</div>
<img id='logo' src='../img/icon_small.png'>
Expand Down
2 changes: 1 addition & 1 deletion app/js/preload/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const initDiscordRPC = () => {
try {
const gameActivity = window.getGameActivity();
rpcActivity = {
state: gameActivity.map ? gameActivity.map : 'Playing Krunker',
state: gameActivity.map.length ? gameActivity.map : 'Playing Krunker',
details: gameActivity.mode,
largeImageKey: 'laf_icon',
largeImageText: 'LaF CLient',
Expand Down

0 comments on commit dcadc8e

Please sign in to comment.