diff --git a/interface/interface.dm b/interface/interface.dm index e2f1a0406b5..0bf2d0ac8bb 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -3,7 +3,11 @@ set desc = "Visit the wiki." set hidden = 1 if( config.wikiurl ) + if(alert("This will open the wiki in your browser. Are you sure?",,"Yes","No")=="No") + return src << link(config.wikiurl) + else + src << "\red The wiki URL is not set in the server configuration." return /client/verb/forum() @@ -11,5 +15,9 @@ set desc = "Visit the forum." set hidden = 1 if( config.forumurl ) + if(alert("This will open the forum in your browser. Are you sure?",,"Yes","No")=="No") + return src << link(config.forumurl) + else + src << "\red The forum URL is not set in the server configuration." return \ No newline at end of file diff --git a/interface/skin.dmf b/interface/skin.dmf index 4ef8537e698..04ed827600d 100644 --- a/interface/skin.dmf +++ b/interface/skin.dmf @@ -1173,7 +1173,7 @@ window "rpane" lock = none elem "forumb" type = BUTTON - pos = 260,0 + pos = 304,0 size = 60x16 anchor1 = none anchor2 = none @@ -1201,7 +1201,7 @@ window "rpane" button-type = pushbutton elem "wikib" type = BUTTON - pos = 195,0 + pos = 240,0 size = 60x16 anchor1 = none anchor2 = none