dpy0428
  1. {
  2.         "type": "minecraft:overworld",
  3.         "generator": {
  4.                 "type": "minecraft:flat",
  5.                 "settings": {
  6.                         "layers": [{"height":1,"block":"minecraft:air"}],
  7.                         "biome": "minecraft:plains",
  8.                         "lakes": false,
  9.                         "features ": false,
  10.                         "structures": {
  11.                                 "stronghold":{"count":0},
  12.                                 "structures":{}
  13.                         }
  14.                 }
  15.         }
  16. }
复制代码
如上,在1.17中可以进入,1.18中就识别不到这个维度

晴路卡
本帖最后由 晴路卡 于 2021-12-4 15:23 编辑

https://misode.github.io/dimension/
  1. {
  2.   "type": "minecraft:overworld",
  3.   "generator": {
  4.     "type": "minecraft:flat",
  5.     "settings": {
  6.       "biome": "minecraft:plains",
  7.       "lakes": false,
  8.       "layers": [
  9.         {
  10.           "block": "minecraft:air",
  11.           "height": 1
  12.         }
  13.       ],
  14.       "structures": {
  15.         "structures": {}
  16.       }
  17.     }
  18.   }
  19. }
复制代码