From a2a4f476043367850093ec5076aa659fd2258fea Mon Sep 17 00:00:00 2001 From: Skylar Sadlier Date: Mon, 9 Dec 2019 18:12:35 -0700 Subject: [PATCH] Change how names for nodes are displayed --- query-game-server.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query-game-server.html b/query-game-server.html index 8cadefe..a9cbedb 100644 --- a/query-game-server.html +++ b/query-game-server.html @@ -14,7 +14,7 @@ icon: "icons/server.png", label: function() { if(this.host) { - return `Query: ${this.host}`; + return (this.server_type ? this.server_type : 'Query') + ': ' + this.host + (this.port ? ":" + this.port : ''); } return this.name || 'Query Game Server';