1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Merge pull request #17231 from Gymnasiast/fix/ride-type-script

Fix inverted condition in ScTileElement.hpp
This commit is contained in:
Michael Steenbeek
2022-05-17 21:05:08 +02:00
committed by GitHub

View File

@@ -459,7 +459,7 @@ namespace OpenRCT2::Scripting
try
{
if (value < RIDE_TYPE_COUNT)
if (value >= RIDE_TYPE_COUNT)
throw DukException() << "'rideType' value is invalid.";
auto* el = _element->AsTrack();