Add Wiki link under community
This commit is contained in:
parent
7400ba0503
commit
517b012736
|
@ -22,6 +22,7 @@ export enum MenuOptions {
|
|||
LOG_OUT
|
||||
}
|
||||
|
||||
const wikiUrl = 'https://wiki.pokerogue.net';
|
||||
const discordUrl = 'https://discord.gg/uWpTfdKG49';
|
||||
const githubUrl = 'https://github.com/Flashfyre/pokerogue';
|
||||
|
||||
|
@ -160,6 +161,11 @@ export default class MenuUiHandler extends MessageUiHandler {
|
|||
};
|
||||
|
||||
const communityOptions = [
|
||||
{
|
||||
label: 'Wiki',
|
||||
handler: () => window.open(wikiUrl, '_blank').focus(),
|
||||
keepOpen: true
|
||||
},
|
||||
{
|
||||
label: 'Discord',
|
||||
handler: () => window.open(discordUrl, '_blank').focus(),
|
||||
|
|
Loading…
Reference in New Issue