Merge branch 'neutralino' of https://gitlab.com/KRypt0n_/an-anime-game-launcher into neutralino

This commit is contained in:
Observer KRypt0n_ 2022-01-05 01:15:36 +02:00
commit cc6ff31606
2 changed files with 12 additions and 5 deletions

View file

@ -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'
},
/**

View file

@ -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: {