diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-04-13 23:42:40 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-04-19 23:07:48 +0200 |
commit | ae16a82f3229ed0e4251a7ccd9c48a27082709be (patch) | |
tree | 435459e3b32a8a33c20c0d7a201df26af764e770 | |
parent | a2772aa6ba1541a31b4badf839c6c7c67b20fc2d (diff) | |
download | NorthstarMods-ae16a82f3229ed0e4251a7ccd9c48a27082709be.tar.gz NorthstarMods-ae16a82f3229ed0e4251a7ccd9c48a27082709be.zip |
Open wiki link in external browser (#297)
-rw-r--r-- | Northstar.Client/mod/scripts/vscripts/ui/panel_mainmenu.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.Client/mod/scripts/vscripts/ui/panel_mainmenu.nut b/Northstar.Client/mod/scripts/vscripts/ui/panel_mainmenu.nut index fb4dfcd9..171ee7dc 100644 --- a/Northstar.Client/mod/scripts/vscripts/ui/panel_mainmenu.nut +++ b/Northstar.Client/mod/scripts/vscripts/ui/panel_mainmenu.nut @@ -926,7 +926,7 @@ void function SpotlightButton_Activate( var button ) else { // discord links don't work in origin overlay - if ( link.find( "https://discord.gg" ) == 0 || link == "https://northstar.tf/discord" ) + if ( link.find( "https://discord.gg" ) == 0 || link == "https://northstar.tf/discord" || link == "https://northstar.tf/wiki" ) LaunchExternalWebBrowser( link, WEBBROWSER_FLAG_FORCEEXTERNAL ) else LaunchExternalWebBrowser( link, WEBBROWSER_FLAG_MUTEGAME ) |