slimes not spawning in slime farm
Slimes are not spawning in my slime farm. I dug out a 16x16 area that I saw in the AMIDST. The dimensions are correct. light level is 10-12. I think there's a ravine type of thing just beside my farm. Is that a problem? The hole on wall is the entrance to ravine. I can hear a few mobs from here and the ravine is lit up. 
Best Answer
Slimes usually take a LONG time to spawn even in swamps. Make sure your not in peacefully just in case you accidently turned it to it. Hope this helped.
Pictures about "slimes not spawning in slime farm"



Why is slime not spawning in my slime chunk?
Slimes are shy \u2013 they won't spawn if other mobs are nearby. Assuming your area is in the correct zone (inside a Slime spawn chunk and within ~40 blocks from bedrock), you also need to check the ravine nearby and light it with torches to keep other mobs from spawning nearby and stopping the Slimes from spawning.How do you get Slimes to spawn?
A slime needs roughly a 3\xd72.1x3 free space to spawn. The area in which the slime spawns must be clear of solid or liquid obstructions. When a slime attempts to spawn, the game checks for the space requirement of a large slime, and the size is determined later.What prevents slime from spawning?
Slimes can spawn in any light level, so having your area well-lit will not stop them. However, just as with other mobs, slimes require an opaque block to spawn on top of. You can stop them from spawning by lining the floor of your area with transparent blocks, such as glass or slabs.How long does it take for slime to spawn in slime chunk?
Within slime chunks, slimes can spawn when Y < 40. This method requires an underground room to be dug out before the farm is constructed. Slime spawning in swamps can occur between Y=51 and Y=69....Pre-build.Chunks minedProbability of finding at least 1 slime chunk (%)1477.121681.472290.152995.291 more rowMinecraft Tutorial - How to get Slimes to Spawn
More answers regarding slimes not spawning in slime farm
Answer 2
There are a number of issues to be aware of when building a slime farm. It is not clear from your description if you took all of them into account, so I'll list them all:
- You know slimes only spawn in certain chunks. So, no worries there, but for future readers, just making that point clear. Amidst is one excellent tool for finding spawn chunks.
- Slimes only spawn below level 40. It isn't clear if your spawning pad is below level 40 or not.
- Slimes spawn more rarely than other mobs, so you need to have a lot more slime spawnable areas than normal mob spawning areas. The typical way to accomplish this, is to light up all surrounding caves, and the entire overworld in a 128 block radius around your spawning pad.
Answer 3
When I built a slime farm several months ago these were some of the things I learned:
Slimes are shy - they won't spawn if other mobs are nearby. Assuming your area is in the correct zone (inside a Slime spawn chunk and within ~40 blocks from bedrock), you also need to check the ravine nearby and light it with torches to keep other mobs from spawning nearby and stopping the Slimes from spawning.
You also have to stay close to the chunk (maybe even within it) for long periods of time to ensure the slimes will span because they won't spawn if you leave the area (I built a fishing platform and alchemy/enchanting lab above my farm to keep the chunk active and stay busy with interesting tasks).
Answer 4
There are these areas called slime chunks (source):
"Slime chunks"
Slimes spawn throughout the world (except mushroom islands) below layer 40 regardless of light level, but only in certain chunks, 1 in 10 of all chunks. These "slime chunks" are determined pseudo-randomly by combining their chunk coordinates with the seed of the world:
Random rnd = new Random(seed + (long) (xPosition * xPosition * 0x4c1906) + (long) (xPosition * 0x5ac0db) + (long) (zPosition * zPosition) * 0x4307a7L + (long) (zPosition * 0x5f24f) ^ 0x3ad8025f); return rnd.nextInt(10) == 0; That is, using the chunk coordinates to help generate a seed, a random number between 0 and 9 will be generated, and if that number is 0, the chunk will be able to spawn slimes. To convert world coordinates to chunk coordinates, divide by 16 and round down
If you want to do it in swamp (source):
Swamps
In swamps, slimes may spawn at night between the heights of 50 and 70 provided the light level is 7 or less. They spawn most often on a full moon, and never on a new moon.
More precisely, the game checks if the light level is equal to or less than a random integer (from 0 to 7), then if the fraction of the moon which is bright is greater than a random number (from 0 to 1). If these conditions are met and the altitude is acceptable, there is a 50% chance of spawning a slime.
And my few tips to end it of:
Make a mine at the maximum height where can spawn Bedrock (the floor is height 6) and make it flat. Mine resources and get slimes!
Enjoy your slimeballs!
Quotes from minecraft wiki.
Sources: Stack Exchange - This article follows the attribution requirements of Stack Exchange and is licensed under CC BY-SA 3.0.
Images: cottonbro, Egor Kamelev, Anton Atanasov, Pille Kirsi
