mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 07:07:33 +00:00
feat: Add support for rFactor 2, Fix Release years (#614)
* Add support for rFactor 2, Fix Release years * docs: update changelog for rFactor 2 support (#614)
This commit is contained in:
parent
dcd12d0360
commit
d88f6cfca3
3 changed files with 11 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
## To Be Released...
|
||||
## 5.X.Y
|
||||
* Added Vintage Story support via the master server (#606)
|
||||
* Added support for rFactor 2 (By @xCausxn #614)
|
||||
|
||||
## 4.3.2
|
||||
* Locked dependencies versions
|
||||
|
|
|
|||
|
|
@ -241,6 +241,7 @@
|
|||
| redorchestra | Red Orchestra | |
|
||||
| redorchestra2 | Red Orchestra 2 | [Valve Protocol](#valve) |
|
||||
| rfactor | rFactor | |
|
||||
| rfactor2 | rFactor 2 | [Valve Protocol](#valve) |
|
||||
| ricochet | Ricochet | [Valve Protocol](#valve) |
|
||||
| risingworld | Rising World | [Valve Protocol](#valve) |
|
||||
| ron | Rise of Nations | |
|
||||
|
|
|
|||
10
lib/games.js
10
lib/games.js
|
|
@ -2413,13 +2413,21 @@ export const games = {
|
|||
},
|
||||
rfactor: {
|
||||
name: 'rFactor',
|
||||
release_year: 2018,
|
||||
release_year: 2005,
|
||||
options: {
|
||||
port: 34397,
|
||||
port_query_offset: -100,
|
||||
protocol: 'rfactor'
|
||||
}
|
||||
},
|
||||
rfactor2: {
|
||||
name: 'rFactor 2',
|
||||
release_year: 2013,
|
||||
options: {
|
||||
port_query: 64299,
|
||||
protocol: 'valve'
|
||||
}
|
||||
},
|
||||
ricochet: {
|
||||
name: 'Ricochet',
|
||||
release_year: 2005,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue