AJ Richardson
AJ Richardson
This code is open source, you are welcome to use it in accordance with the license: https://github.com/aj-r/2048-AI/blob/master/LICENSE.txt
I don't see any StatPerk properties in the documentation: https://developer.riotgames.com/api-methods/#match-v4/GET_getMatch. Are you referring to `perk0`, `perk1`, `perk2`, etc.? Or are these some new properties that Riot hasn't documented yet?
The unit tests use `NA1` as the plaform ID for most tests - see `TestBase.cs`. I'm not sure what's up with the 403 - I'll look into it.
I regenerated my API key and `GetSummonerBySummonerNameAsync` works for me. Double-check that you rebuilt your code after changing the API key. If it still doesn't work, check with Riot to...
This is still not working with `[email protected]`, `[email protected]`, `[email protected]`. Setting `bail: true` has no effect when running karma. It does work when running `webpack-dev-server`, though. This is really annoying in...
I also tried setting `watch: false` in my webpack config, but that also had no effect. It seems like `karma-webpack` always runs webpack in watch mode no matter what. I...
As a workaround, if you really want to unbind the comma key, you can call `key.deleteScope("your_scope")`, then re-bind all of the other keys for that scope that you wanted to...
Yikes, in theory we'd need approval from maintainers of the other packages in order to bump the version. I wonder if any DT maintainers know a way to write a...
> That being said TS 4.7 will go out of support once 5.5 is out, so waiting a bit may also "fix" the problem. Sounds good, let's just wait for...
Alternatively, it's possible to support `extended_gcd` for unsigned integers as described here: https://stackoverflow.com/q/67097428/1299394, which would avoid a breaking change. Edit: because `x` and `y` must both be positive for unsigned...