Forum Thread
Berry Bag not opening
Forum-Index → Bug Reports → Resolved → Berry Bag not openingEDIT: or the bug is fixed or, as I presume, it depends on the computer where you are connected. At work it was impossible to use the seed makers, but at home I have no problem.
The problem is that either of them doesn't support String.prototype.includes() (StackOverflow)
An alternative to this function would be to use String.prototype.indexOf().
There is an easy way to fix this and an annoying way to fix this.
Easy way:
Add this code to your javascript files:
String.prototype.includes = function(a)
{
return this.indexOf(a) != -1;
}
return this.indexOf(a) != -1;
}
Annoying way:
Change every .includes(...) to .indexOf(...) != -1