Skip to content

Commit

Permalink
Fix stock 4C classification (#293)
Browse files Browse the repository at this point in the history
The website lists the 4C as SS but the rule book lists it as AS.
This can be found on page 184 of the 2024 rulebook found here:

https://www.scca.com/downloads/71400-2024-rulebook-april/download
  • Loading branch information
sdennie authored May 26, 2024
1 parent 0c97421 commit a2af8b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ const allSoloCars = {
'all': ['hs', 'fsp', 'sm', 'dp', 'xp', 'xb'],
},
'4C (incl. Spider)': {
'2015': ['ss', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2016': ['ss', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2017': ['ss', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2018': ['ss', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2019': ['ss', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2020': ['ss', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2015': ['as', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2016': ['as', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2017': ['as', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2018': ['as', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2019': ['as', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
'2020': ['as', 'ssr', 'sst', 'ssm', 'xp', 'xu'],
},
'164 (non-S)': {
'1991': ['hs', 'sm', 'xp', 'xa'],
Expand Down

0 comments on commit a2af8b1

Please sign in to comment.