Forum Thread
Seed Maker bug/glitch?
Forum-Index → Bug Reports → Resolved → Seed Maker bug/glitch?This problem is really minor compared to what we had to face before with the tool shed.
You can see that here
You can simply reload the page and solve your problem in no time.
Also it is possible that your issue is a trade-off of the issue I mentioned above.
When you put a berry in the seed maker it sends a request to includes/ajax/berrygarden/fillSeedMaker.php.
Then the server sends some stuff back that includes some code:
<script>addBerryToMultiBag('Cheri', 1, -1, berryBagArr);</script>
This doesn't work because berryBagArr isn't defined
it works when changed to
<script>addBerryToMultiBag('Cheri', 1, -1, [[true, ""]]);</script>
This surpasses the undefined berryBagArr so Riako should only change this little thing (or make sure berryBagArr is defined but I think this is easier since I did not find any other use for berryBagArr).