diff --git a/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue b/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue
index 5bf81e8..b9d5f59 100644
--- a/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue
+++ b/src/components/TabsMenuElements/ServersView/Components/ServerFullInfo.vue
@@ -113,7 +113,7 @@ export default {
     },
     onMove(select){
       switch (select) {
-        case 'steam': return window.open(`steam://${this.serverInfo['ip']}`, '_self').focus();
+        case 'steam': return window.open(`steam://connect/${this.serverInfo['ip']}`, '_self').focus();
         case 'workshop': return window.open(this.serverData['workshop'], '_blank').focus();
         case 'fastdl': return window.open(`https://tf2.pblr-nyk.pro/tf/maps/${this.serverInfo['map']}.bsp.bz2`, '_blank').focus();
       }