From 8cb212dbf9f4f48a549b9cc20a5b03ccb6ca5546 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Mon, 29 Aug 2016 13:55:33 +0200 Subject: [PATCH] Properly fix #4348 PREMT1 obviously belongs to the LIM Launched RC, not to the non-existing ride 59. --- src/rct1/tables.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rct1/tables.cpp b/src/rct1/tables.cpp index bb3a2918bc..0a92c4b360 100644 --- a/src/rct1/tables.cpp +++ b/src/rct1/tables.cpp @@ -1055,8 +1055,8 @@ namespace RCT1 { "INTINV " }, // RIDE_TYPE_INVERTED_IMPULSE_COASTER { "WCATC ", "RCKC ", "JSTAR1 " }, // RIDE_TYPE_MINI_ROLLER_COASTER { "PMT1 " }, // RIDE_TYPE_MINE_RIDE - { "PREMT1 " }, // RIDE_TYPE_59 - { }, // RIDE_TYPE_LIM_LAUNCHED_ROLLER_COASTER + { }, // RIDE_TYPE_59 + { "PREMT1 " }, // RIDE_TYPE_LIM_LAUNCHED_ROLLER_COASTER }; return preferedRideEntryOrder[rideType]; }