mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
Re-gen readme for 2.0 release, and remove notes about Separate Query Port (as it's now less important)
This commit is contained in:
parent
b2d76da65a
commit
dd478a7bce
4 changed files with 160 additions and 168 deletions
|
|
@ -22,14 +22,11 @@ class GameResolver {
|
|||
|
||||
printReadme() {
|
||||
let out = '';
|
||||
for(const key of Object.keys(games)) {
|
||||
const game = games[key];
|
||||
for(const [key,game] of this.games.entries()) {
|
||||
if (!game.pretty) {
|
||||
continue;
|
||||
}
|
||||
out += "* "+game.pretty+" ("+key+")";
|
||||
if(game.options.port_query_offset || game.options.port_query)
|
||||
out += " [[Separate Query Port](#separate-query-port)]";
|
||||
if(game.extra.doc_notes)
|
||||
out += " [[Additional Notes](#"+game.extra.doc_notes+")]";
|
||||
out += "\n";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue