AntMCDev / MCSkyblock

The Official MCSkyblock repository
MIT License
6 stars 2 forks source link

Save Data on Geodes #74

Closed JosephMillsAtWork closed 1 year ago

JosephMillsAtWork commented 1 year ago

There are a lot of geodes that spawn if the option is set.Maybe we want to limit this to say 25 and needs to be at least 125 blocks out from spawn ?

AntMCDev commented 1 year ago

Can do - or add a scaling config option (0-100% geode frequency). Then just do something like: if ((int)Math.round(Math.random()*100) > Config...geodeFrequency) { return; }

So at 50%, that means that half the geodes would spawn for example. Super quick and easy, don't have to persist any data etc

AntMCDev commented 1 year ago

Plus, it means no matter how far out you go you can still find geodes, just like other structures/features

AntMCDev commented 1 year ago

Done