AcademyCraft

AcademyCraft

1M Downloads

[Bug] Problems of WorldGen

nirvanaxiao6 opened this issue · 1 comments

commented

Describe the bug
Using World Stripper, I found that WorldGen has some problem.

codes:
AcademyCraft/src/main/java/cn/academy/worldgen/ACWorldGen.java

For example, constraint_metal will generate between y = 60 and y = 24. But in the following screenshot, you can see the y = 24 line(using wool) and ores of constraint_metal below 24(also wool)

Its size also has some problem. It's too small than what's in the code.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
2019-01-06_16 09 23

Desktop (please complete the following information):

  • OS: [e.g. Windows, MacOS, Linux]
  • MC Version and Forge version: [e.g. 14.23.4.2705-1.12.2]
  • Version [e.g. 1.1.0beta1]

Additional context
Add any other context about the problem here.

commented

经确认,之前的说法有误。
正确的说法是:
new CustomWorldGen(new WorldGenMinable(矿物类型:ACBlocks.reso_ore.getDefaultState(), 产生数量:4), 最大高度:60, 生成频率:18)

产生数量会因为受到生成点周围环境的影响而稍微减少,生成频率意味着一个区块内会生成多少次这种矿物。
烦请抽空根据上述结论再验证当前的生成机制是否符合。