diff --git a/README.md b/README.md index c2dfd67..78ca0e4 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,6 @@ When you click "Go", the plugin will randomize the type of vehicle, selecting fr ### Troubleshooting -**The ride I want to edit isn't in the dropdown!** It's been filtered out because it only has one train. This was intended to make "traffic" rides easier to find, but if that's an issue, it can be adjusted. - **There are a bunch of vehicles missing from the plugin!** The plugin can only use vehicle types that are included in your map. Use the object selection tool to add the vehicles you'd like. ## Roadmap diff --git a/package.json b/package.json index 72d803d..5343032 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openrct2-TrafficManager", - "version": "1.0.0", + "version": "1.1.0", "description": "", "main": "app.js", "scripts": { diff --git a/src/environment.ts b/src/environment.ts index 9fae97b..6f75a68 100644 --- a/src/environment.ts +++ b/src/environment.ts @@ -1,6 +1,6 @@ /// -export const pluginVersion = "1.0"; +export const pluginVersion = "1.1"; export const pluginName = "Traffic Manager"; export const pluginAuthors = ["fidwell"]; export const buildConfiguration: BuildConfiguration = __BUILD_CONFIGURATION__; diff --git a/src/objects/parkRide.ts b/src/objects/parkRide.ts index 2bb8381..c48988e 100644 --- a/src/objects/parkRide.ts +++ b/src/objects/parkRide.ts @@ -24,7 +24,6 @@ export default class ParkRide { static getAllRides(): ParkRide[] { return map.rides .filter((r) => r.classification === "ride") - .filter((r) => r.vehicles.length > 1) .sort((a, b) => a.name.localeCompare(b.name)) .map((r) => new ParkRide(r.id, r.name)); }