Skip to content

Commit

Permalink
Removing multi-train limitation
Browse files Browse the repository at this point in the history
because some people build their parking lots that way apparently
  • Loading branch information
fidwell committed Aug 6, 2022
1 parent 9f8415f commit e518134
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openrct2-TrafficManager",
"version": "1.0.0",
"version": "1.1.0",
"description": "",
"main": "app.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/environment.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference path="environment.d.ts" />

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__;
Expand Down
1 change: 0 additions & 1 deletion src/objects/parkRide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
Expand Down

0 comments on commit e518134

Please sign in to comment.