SourceWriters / RealisticWorldGenerator-Api

GNU General Public License v3.0
0 stars 0 forks source link

[BUG] Slimes are not spawning in swampland biome #28

Closed ShortyDev closed 2 years ago

ShortyDev commented 2 years ago

Describe the bug There are no slimes spawning in the swampland biome. After adding SLIME to the list in the biomes.yml of the world it still doesn't seem to work.

To Reproduce Create a world and find a swampland biome.

Expected behavior Slimes should be spawning in the biome

Server:

Lauriichan commented 2 years ago

RWG only handles initial Mob spawning, afterwards minecraft itself does the rest. Slimes are hostile mobs and do not spawn on initial mob spawning, they spawn afterwards naturally therefore this is not a Bug of RWG. It could be tho that the spawning conditions for slimes aren't met in the Swampland biome, if that is the case then you should check which spawning condition is not fulfilled and adjust your configuration accordingly. For example too many different blocks so that a slime is unable to spawn

Lauriichan commented 2 years ago

And if you add them to the mobs list of the biomes.yml they will, as I said, only spawn once on chunk generation

ShortyDev commented 2 years ago

Okay, this doesn't seem to be an issue in RWG then. My problem still persists though, I tried making a large area of grass blocks which are on the same level but the slimes just don't seem to spawn. I choose a night which has a full moon, too.

According to the wiki page the light level has to be between 0-7, but on my F3 screen the sky-light-level is 15 and block is 0. Anywhere I go, though when being in water it slightly changes sky and block levels. Is this something that can be changed in RWG or in any other of my server configurations? (Only happening in the world generated by RWG) image

ShortyDev commented 2 years ago

I found the issue. The issue was that the height where I tested everything was below 70. Slimes are now spawning and the issue is resolved.

Light-levels seem to be working there too. Weird.

Lauriichan commented 2 years ago

Okay that's great ^^