Fixed errata slash handling to include all PC errata sets and not just 51

This commit is contained in:
Christian 'ketura' McCarty
2021-02-21 17:58:39 -06:00
parent 05dc479a71
commit 8b7e46e1b1

View File

@@ -232,7 +232,7 @@ var Card = Class.extend({
var separator = this.blueprintId.indexOf("_");
var setNo = parseInt(this.blueprintId.substr(0, separator));
if(setNo == 51)
if(setNo >= 50 && setNo <= 69)
return true;
return this.errata;