1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00

Added a function to tell if a bundle is complete.

This commit is contained in:
John Cleaver 2016-04-13 18:35:19 -04:00
parent 9969051139
commit c785347a84

View File

@ -140,6 +140,9 @@ var v = new Vue({
}
return true;
},
isBundleComplete: function(bundle_id){
return this.user_data[bundle_id].length >= this.static.bundles[bundle_id].items_required;
}
}
});