Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(1 edit) (+1)

I've found a bug in bloom event: it doesn't always autosell the lowest flower. I had 10-5-4-3-1-0 + 1 empty slot, and after breeding (flower L7 with splitting gene) I got 10-4-3-1-0-6-6.

UPD: from my observations, it removes lvl just below one it tries to add first and then searches down to lvl 1. Probably invalid search loop direction...

UPD2:

Ki.state.bloom.inventory.forEach(((n,i)=>{a===n.type&&e>n.tier&&n.tier>t&&(t=n.tier,r=i)}))

should be

Ki.state.bloom.inventory.forEach(((n,i)=>{a===n.type&&e>n.tier&&t>n.tier&&(t=n.tier,r=i)}))

I created a PR in the source repo to fix this. The code you suggest seems to be the minimized source, not the source from the repo.

https://github.com/Tendsty/gooboo/pull/49