mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-20 17:01:47 +03:00
Merge branch 'neutralino' of https://gitlab.com/KRypt0n_/an-anime-game-launcher into neutralino
This commit is contained in:
commit
cc6ff31606
2 changed files with 12 additions and 5 deletions
|
@ -82,7 +82,11 @@ promisify(async () => {
|
|||
*/
|
||||
fields: {
|
||||
/**
|
||||
* Small messages after title
|
||||
* Small message after title (only in game)
|
||||
*/
|
||||
details: 'Exploring the landscape of',
|
||||
/**
|
||||
* Small message after details
|
||||
*/
|
||||
states: {
|
||||
/**
|
||||
|
@ -91,9 +95,9 @@ promisify(async () => {
|
|||
'in-launcher': 'Preparing to launch',
|
||||
|
||||
/**
|
||||
* Message showed when you're in game
|
||||
* Message shows when your in game
|
||||
*/
|
||||
'in-game': 'Playing the game'
|
||||
'in-game': 'Teyvat'
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
@ -103,13 +103,16 @@ export default class Launcher
|
|||
|
||||
this.rpc = new DiscordRPC({
|
||||
id: '901534333360304168',
|
||||
|
||||
// @ts-expect-error
|
||||
details: 'in-game' ? discord.fields.details : discord.fields.states['in-launcher'],
|
||||
|
||||
// @ts-expect-error
|
||||
details: discord.fields.states[state],
|
||||
state: 'in-game' ? ddiscord.fields.states['in-game'] : undefined,
|
||||
|
||||
icon: {
|
||||
// @ts-expect-error
|
||||
large: discord.fields.icon
|
||||
large: state === 'in-launcher' ? 'launcher' : discord.fields.icon
|
||||
},
|
||||
|
||||
time: {
|
||||
|
|
Loading…
Reference in a new issue