mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
Update readme to remove legacy minecraft notes
This commit is contained in:
parent
7cb5146432
commit
0f1deb03da
3 changed files with 4 additions and 6 deletions
|
@ -218,7 +218,6 @@ Games List
|
||||||
* Medal of Honor: Warfighter (mohwf) [[Separate Query Port](#separate-query-port)]
|
* Medal of Honor: Warfighter (mohwf) [[Separate Query Port](#separate-query-port)]
|
||||||
* Minecraft (minecraft) [[Additional Notes](#minecraft)]
|
* Minecraft (minecraft) [[Additional Notes](#minecraft)]
|
||||||
* Minecraft: Pocket Edition (minecraftpe)
|
* Minecraft: Pocket Edition (minecraftpe)
|
||||||
* Minecraft (minecraftping) [[Additional Notes](#minecraft)]
|
|
||||||
* Monday Night Combat (mnc) [[Separate Query Port](#separate-query-port)]
|
* Monday Night Combat (mnc) [[Separate Query Port](#separate-query-port)]
|
||||||
* Multi Theft Auto: Vice City (mtavc) [[Separate Query Port](#separate-query-port)]
|
* Multi Theft Auto: Vice City (mtavc) [[Separate Query Port](#separate-query-port)]
|
||||||
* Multi Theft Auto: San Andreas (mtasa) [[Separate Query Port](#separate-query-port)]
|
* Multi Theft Auto: San Andreas (mtasa) [[Separate Query Port](#separate-query-port)]
|
||||||
|
@ -395,10 +394,6 @@ have set the cvar: host_players_show 2
|
||||||
DayZ uses a query port that is separate from its main game port. The query port is usually
|
DayZ uses a query port that is separate from its main game port. The query port is usually
|
||||||
the game port PLUS 24714 or 24715. You may need to pass this port in as the 'port_query' request option.
|
the game port PLUS 24714 or 24715. You may need to pass this port in as the 'port_query' request option.
|
||||||
|
|
||||||
### Minecraft
|
|
||||||
Some minecraft servers may not respond to a typical status query. If this is the case, try using the
|
|
||||||
'minecraftping' server type instead, which uses a less accurate but more reliable solution.
|
|
||||||
|
|
||||||
### Mumble
|
### Mumble
|
||||||
For full query results from Mumble, you must be running the
|
For full query results from Mumble, you must be running the
|
||||||
[GTmurmur plugin](http://www.gametracker.com/downloads/gtmurmurplugin.php).
|
[GTmurmur plugin](http://www.gametracker.com/downloads/gtmurmurplugin.php).
|
||||||
|
|
|
@ -170,7 +170,7 @@ mohwf|Medal of Honor: Warfighter|battlefield|port=25200,port_query_offset=22000
|
||||||
|
|
||||||
minecraft|Minecraft|minecraft|port=25565|srvRecord=_minecraft._tcp,doc_notes=minecraft
|
minecraft|Minecraft|minecraft|port=25565|srvRecord=_minecraft._tcp,doc_notes=minecraft
|
||||||
# Legacy name
|
# Legacy name
|
||||||
minecraftping|Minecraft|minecraft|port=25565|srvRecord=_minecraft._tcp,doc_notes=minecraft
|
minecraftping||minecraft|port=25565|srvRecord=_minecraft._tcp,doc_notes=minecraft
|
||||||
|
|
||||||
minecraftpe|Minecraft: Pocket Edition|gamespy3|port=19132,maxAttempts=2
|
minecraftpe|Minecraft: Pocket Edition|gamespy3|port=19132,maxAttempts=2
|
||||||
mnc|Monday Night Combat|valve|port=7777,port_query=27016
|
mnc|Monday Night Combat|valve|port=7777,port_query=27016
|
||||||
|
|
|
@ -80,6 +80,9 @@ class TypeResolver {
|
||||||
let out = '';
|
let out = '';
|
||||||
for(const key of Object.keys(games)) {
|
for(const key of Object.keys(games)) {
|
||||||
const game = games[key];
|
const game = games[key];
|
||||||
|
if (!game.pretty) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
out += "* "+game.pretty+" ("+key+")";
|
out += "* "+game.pretty+" ("+key+")";
|
||||||
if(game.options.port_query_offset || game.options.port_query)
|
if(game.options.port_query_offset || game.options.port_query)
|
||||||
out += " [[Separate Query Port](#separate-query-port)]";
|
out += " [[Separate Query Port](#separate-query-port)]";
|
||||||
|
|
Loading…
Reference in a new issue