Log In
Poison Weather Castform Don't have an account yet? Register now!
.

Forum Thread

Berry Bag not opening

Forum-Index Bugs/Complaints Solved Berry Bag not opening
Argumenta
OFFLINE
Trainerlevel: 37

Forum Posts: 23
Posted: Wed, 16/05/2018 18:39 (5 Years ago)
When I try to make seeds, there are no berries! The gardens are also being odd, I have to click Garden 1, it doesn't automatically open anymore.

Can't plant
:D
loketoke
OFFLINE
Trainerlevel: 147

Forum Posts: 585
Posted: Thu, 17/05/2018 15:06 (5 Years ago)
I'm having the same issue.

The tool shed is not working at all.
Greggory_Lee
OFFLINE
Trainerlevel: 109

Forum Posts: 953
Posted: Thu, 17/05/2018 15:24 (5 Years ago)
It's working perfectly fine for me. I'm not sure what the issue is in that its glitched for some and fine for others.


Rest in Peace, Tasca
April 2003 - January 4th 2016
loketoke
OFFLINE
Trainerlevel: 147

Forum Posts: 585
Posted: Thu, 17/05/2018 15:31 (5 Years ago)
Greg, this is what we are talking about the berry bag is totally empty

EDIT: 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.
SwampFall
OFFLINE
Trainerlevel: 59

Forum Posts: 604
Posted: Fri, 18/05/2018 22:26 (5 Years ago)
There is indeed an issue with this in both Internet Explorer and Opera.

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;
}

Annoying way:
Change every .includes(...) to .indexOf(...) != -1
Riako
OFFLINE
Trainerlevel: 69

Forum Posts: 2,604
Posted: Sun, 20/05/2018 11:40 (5 Years ago)
Should be fixed now! :)