水杉
玩家在地皮世界开启飞行权限后(地皮开放飞行) 用warp传送到其他世界(其他世界不允许飞行)也可以继续飞行  这个问题怎么解决

BenLi豪


在多世界插件(Multiverse-Core)的world.yml文件里面修改

把里面的allowFlight: 'true' 修改为false就可以了!
  1. worlds:
  2.   world_the_end:
  3.     ==: MVWorld
  4.     hidden: 'false'
  5.     alias: ''
  6.     color: WHITE
  7.     style: NORMAL
  8.     pvp: 'true'
  9.     scale: '16.0'
  10.     respawnWorld: ''
  11.     allowWeather: 'true'
  12.     difficulty: EASY
  13.     spawning:
  14.       ==: MVSpawnSettings
  15.       animals:
  16.         ==: MVSpawnSubSettings
  17.         spawn: 'true'
  18.         spawnrate: '-1'
  19.         exceptions: []
  20.       monsters:
  21.         ==: MVSpawnSubSettings
  22.         spawn: 'true'
  23.         spawnrate: '-1'
  24.         exceptions: []
  25.     entryfee:
  26.       ==: MVEntryFee
  27.       amount: '0.0'
  28.       currency: '-1'
  29.     hunger: 'true'
  30.     autoHeal: 'true'
  31.     adjustSpawn: 'true'
  32.     portalForm: ALL
  33.     gameMode: SURVIVAL
  34.     keepSpawnInMemory: 'true'
  35.     spawnLocation:
  36.       ==: MVSpawnLocation
  37.       x: 0.0
  38.       y: 64.0
  39.       z: 0.0
  40.       pitch: 0.0
  41.       yaw: 0.0
  42.     autoLoad: 'true'
  43.     bedRespawn: 'true'
  44.     worldBlacklist: []
  45.     environment: THE_END
  46.     seed: '-8716610233383232088'
  47.     generator: 'null'
  48.     playerLimit: '-1'
  49.     allowFlight: 'true'
复制代码



水杉
BenLi豪 发表于 2017-5-10 19:29
在多世界插件(Multiverse-Core)的world.yml文件里面修改
把里面的allowFlight: 'true' 修改为false就可 ...

谢谢 我已经在百度找到了 还是给你最佳!