mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-26 17:21:21 +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;
|
||||
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;
|
||||
|
@ -127,12 +130,7 @@ function filterTasks(data) {
|
|||
if ($("#dustdevils").prop("checked") === false) {
|
||||
index_list.unshift(i)
|
||||
}
|
||||
break;
|
||||
case 'FOSSIL ISLAND WYVERNS':
|
||||
if ($("#bonevoyage").prop("checked") === false) {
|
||||
index_list.unshift(i)
|
||||
}
|
||||
break;
|
||||
break;
|
||||
case 'MUTATED ZYGOMITES':
|
||||
case 'OTHERWORLDLY BEINGS':
|
||||
if ($("#lostcity").prop("checked") === false) {
|
||||
|
|
Loading…
Reference in a new issue