Why ShipAI alone does not have skipQueue
See original GitHub issue@krzychu124 did you forgot to add skipQueue to ShipAI? If so we should delete this line:
//CreatePathPatch.cs
if (ai is ShipAI) args.skipQueue = false; // TODO [issue #952] why ShipAI should be different than others?
If not we should add a comment there explaining why.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Why do the chinese tend to skip queues? : r/China
There are cases where queues don't really work in China. The bus stops, for example, there's always a few that skip. But lining...
Read more >Skip Queue in Icecrown
Yes, just donate 10 bucks and you will have the premium status which already gives the queue skip, you don't need to "buy"...
Read more >Players "skipping" queue lines - WoW Classic
I signed into queue on Whitemane at 3:30pm EST, been 5 hours. I have been around 300 for over an HOUR alone. Something...
Read more >Skip Queue in WOTLK with this Program - YouTube
... this channel to get access to perks: https://www.youtube.com/channel/UC_8BZRsRsgtkC_2oUiRAVxQ/join #wowclassic #wotlk #wotlkclassic.
Read more >how to skip "waiting in queue for" in fortnite chapter 4 - YouTube
Your browser can 't play this video. Learn more. Switch camera.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Maybe it would help to group things in to “meta” network categories, and then seek consistency within each meta category?
The frequency at which users alter networks is influenced by those same factors, which determines the importance of repathing already-spawned vehicles.
I assume failing to repath a vehicle leads to despawning. So on things like ship and plane routes it could be problematic if we try repath too soon?
Wait… skipQueue was not changed (for other types) to speed up searching for path, but for fixing problem with despawning, because every time you touch segment or node (changing restriction and other things) segment is invalidated, so without skipQueue, those vehicles (driving through invalidated segments) could despawn before they get corrected path again. In vanilla there are not such problems because invalidation occurs only when you remove or add segment/node (despawn is not surprise).
We don’t have any restrictions for aircraft or ship lines, so I don’t think we need to change anything there