mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-27 09:41:19 +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
10
js/script.js
10
js/script.js
|
@ -89,7 +89,10 @@ function filterTasks(data) {
|
|||
}
|
||||
break;
|
||||
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)
|
||||
}
|
||||
break;
|
||||
|
@ -128,11 +131,6 @@ function filterTasks(data) {
|
|||
index_list.unshift(i)
|
||||
}
|
||||
break;
|
||||
case 'FOSSIL ISLAND WYVERNS':
|
||||
if ($("#bonevoyage").prop("checked") === false) {
|
||||
index_list.unshift(i)
|
||||
}
|
||||
break;
|
||||
case 'MUTATED ZYGOMITES':
|
||||
case 'OTHERWORLDLY BEINGS':
|
||||
if ($("#lostcity").prop("checked") === false) {
|
||||
|
|
Loading…
Reference in a new issue