Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Pierre Kim
OpenRCT2-mod
Commits
f073ec33
Commit
f073ec33
authored
7 years ago
by
Michael Steenbeek
Browse files
Options
Download
Email Patches
Plain Diff
Fix #6646: Max cars/train increase for RCT1 parity
parent
c95a9e4c
develop
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/openrct2/object/RideObject.cpp
+18
-0
src/openrct2/object/RideObject.cpp
with
18 additions
and
0 deletions
+18
-0
src/openrct2/object/RideObject.cpp
+
18
-
0
View file @
f073ec33
...
...
@@ -445,6 +445,24 @@ void RideObject::PerformFixes()
{
_legacyType
.
max_cars_in_train
=
3
+
_legacyType
.
zero_cars
;
}
// The Wooden Roller Coaster could take 7 cars per train in RCT1.
else
if
(
String
::
Equals
(
identifier
,
"PTCT1 "
))
{
_legacyType
.
max_cars_in_train
=
7
+
_legacyType
.
zero_cars
;
}
// The Looping Roller Coaster could take 8 cars per train in RCT1.
else
if
(
String
::
Equals
(
identifier
,
"SCHT1 "
))
{
_legacyType
.
max_cars_in_train
=
8
+
_legacyType
.
zero_cars
;
}
// The Steel Twister could take 8 cars per train in RCT1.
else
if
(
String
::
Equals
(
identifier
,
"BMSD "
)
||
String
::
Equals
(
identifier
,
"BMSU "
)
||
String
::
Equals
(
identifier
,
"BMFL "
)
||
String
::
Equals
(
identifier
,
"BMRB "
))
{
_legacyType
.
max_cars_in_train
=
8
+
_legacyType
.
zero_cars
;
}
// Wacky Worlds' Crocodile Ride (a log flume vehicle) is incorrectly locked to 5 cars.
else
if
(
String
::
Equals
(
identifier
,
"CROCFLUM"
))
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help