Support for Nazjatar/Mechagon
Debuggernaut opened this issue ยท 6 comments
I hacked my local copy of BeStride to add Nazjatar into BeStride_Constants like so:
line 138, in:
Flight = {
Restricted = {
Worlds = {
},
Continents = {
[1355] = { --Nazjatar
requires = 281576,
},
but I'm not sure if I put it in the right spot, and I don't have the ID for Mechagon handy, so I didn't want to send out a crappy pull request
The "requires" would be 278833 for BFA pathfinder Rank 2, allowing flying.
EDIT2:
Can't do a PR myself but the additions are as follows:
Under the Skill section of Riding add:
[278833] = {
name = "Battle for Azeroth Pathfinder",
unlocks = "flying",
zones = {
[1] = "",
},
},
Under the Continents heading should add:
`
[572] = {
requires = 191645,
},
[875] = {
requires = 278833,
},
[876] = {
requires = 278833,
},
`
Under Zones section add:
[1355] = {
requires = 278833,
},
That requires BFA Pathfinder 2 for flying in all zones in Zandalar, Kul Tiras (Mechagon is on the Kul Tiras continent) and Nazjatar (Nazjatar's map type is a Zone off Azeroth instead of a Continent for some reason).
@Daeymien Why couldn't you do a PR?
Merged in #110
ah, he probably just doesn't have git set up on his home computer or something
I hadn't ever done any github pull requests either, so it was a learning experience, haha. At all my jobs I've done all my work under layer after layer of NDAs, so even when I worked on open source stuff I wasn't allowed to send out patches
Thanks for merging the PRs!