tubbo / openrct2-benchwarmer

An OpenRCT2 plugin that adds alternating benches and bins to your park's footpaths with a single click.
MIT License
38 stars 9 forks source link

No more bins are placed and there are lanterns in the queue lines #76

Closed RundesBalli closed 4 months ago

RundesBalli commented 1 year ago

Probably something has been changed in the game, that the API for the addon has changed, or something?

In any case, it is no longer possible to place bins. Queue TV is only placed on every second path, and there are lanterns on the others. In the meantime, benches are also no longer placed.

Lanterns: grafik

No more bins: grafik

The error message is "cannot place that here, can not be placed in queue": grafik

KyuuGryphon commented 11 months ago

Haven't been having this issue with lanterns, but I've definitely been having issues with bins. The plugin just doesn't place them at all, either automatically or using the Build on All Paths option. Version 0.5.1's Add button works, but 1.0.0 and 1.0.1 do not.

Soma91 commented 11 months ago

This PR changed the way the indices of footpathadditionplace work. If you replace addition + 1 with just addition in the Plugin js file it works as expected again.

KyuuGryphon commented 11 months ago

This PR changed the way the indices of footpathadditionplace work. If you replace addition + 1 with just addition in the Plugin js file it works as expected again.

Can confirm, that does the trick here! Much appreciated, thank you. :)

JensMakerAdventures commented 10 months ago

This PR changed the way the indices of footpathadditionplace work. If you replace addition + 1 with just addition in the Plugin js file it works as expected again.

Yes, this works. You need to do it in 2 places in the code and everything is OK again :)

jayjayseal commented 5 months ago

Can confirm this works. Thank you for finding this.

RundesBalli commented 5 months ago

Can confirm this https://github.com/tubbo/openrct2-benchwarmer/issues/76#issuecomment-1793735455