mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-27 01:31:20 +00:00
bug fix (Fossil Island Wyverns)
This commit is contained in:
parent
353a05cc82
commit
e8167b9ad8
1 changed files with 5 additions and 7 deletions
12
js/script.js
12
js/script.js
|
@ -89,7 +89,10 @@ function filterTasks(data) {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'FOSSIL ISLAND WYVERNS':
|
case 'FOSSIL ISLAND WYVERNS':
|
||||||
if ($("#fossilwyverns").prop("checked") === true) {
|
if ($("#bonevoyage").prop("checked") === false) {
|
||||||
|
index_list.unshift(i)
|
||||||
|
}
|
||||||
|
else if ($("#fossilwyverns").prop("checked") === true) {
|
||||||
index_list.unshift(i)
|
index_list.unshift(i)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -127,12 +130,7 @@ function filterTasks(data) {
|
||||||
if ($("#dustdevils").prop("checked") === false) {
|
if ($("#dustdevils").prop("checked") === false) {
|
||||||
index_list.unshift(i)
|
index_list.unshift(i)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'FOSSIL ISLAND WYVERNS':
|
|
||||||
if ($("#bonevoyage").prop("checked") === false) {
|
|
||||||
index_list.unshift(i)
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'MUTATED ZYGOMITES':
|
case 'MUTATED ZYGOMITES':
|
||||||
case 'OTHERWORLDLY BEINGS':
|
case 'OTHERWORLDLY BEINGS':
|
||||||
if ($("#lostcity").prop("checked") === false) {
|
if ($("#lostcity").prop("checked") === false) {
|
||||||
|
|
Loading…
Reference in a new issue