Skip to content

Commit

Permalink
fix: Add DayZ to Valve protocol in games list (#460)
Browse files Browse the repository at this point in the history
* fix: add dayz to valve protocol

* fix extra space
  • Loading branch information
podrivo authored Jan 14, 2024
1 parent 0b8ebc8 commit 6ecb809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_games_list.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ for (const id in sortedGames) {
if (game?.extra?.doc_notes) {
notes.push('[Notes](#' + game.extra.doc_notes + ')')
}
if (game.options.protocol === 'valve') {
if (game.options.protocol === 'valve' || game.options.protocol === 'dayz') {
notes.push('[Valve Protocol](#valve)')
}
if (notes.length) {
Expand Down

0 comments on commit 6ecb809

Please sign in to comment.