Skip to content

Commit

Permalink
v1.0.15
Browse files Browse the repository at this point in the history
- Fixed AUTO queue AGAIN
  • Loading branch information
lowyiyiu committed Feb 21, 2023
1 parent 17af2f7 commit 96f1a7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/html/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ <h1 class="text-center text-yellow-200 font-bold text-3xl">About EasyRunes</h1>

<div>
<p class="text-yellow-200 font-light text-xs">
<b>Version:</b> 1.0.14</span>
<b>Version:</b> 1.0.15
<br />
<b>GitHub:</b> <a class="underline" href="javascript:shell.openExternal('https://github.com/lowyiyiu/EasyRunes')">https://github.com/lowyiyiu/EasyRunes</a>
<br />
Expand Down
2 changes: 1 addition & 1 deletion app/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function getCurrentQueue() {
return new Promise((resolve) => {
api.get('/lol-lobby/v2/lobby').then((data) => {
if (data) {
if (data.gameConfig.queueId in freezer.get().lolalytics.patch) {
if (data.gameConfig.queueId in freezer.get().lolalytics.patch || data.gameConfig.queueId === 420 || data.gameConfig.queueId === 450) {
resolve(data.gameConfig.queueId);
} else {
resolve(420);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "easyrunes",
"productName": "EasyRunes",
"version": "1.0.14",
"version": "1.0.15",
"description": "Automate runes selection process for League of Legends",
"main": "app/js/main.js",
"scripts": {
Expand Down

0 comments on commit 96f1a7b

Please sign in to comment.