1374825703
本帖最后由 1374825703 于 2020-7-6 12:10 编辑
在服务器里面,安装了多世界插件之后、如果主城世界是一个虚空 仅有一个建筑 。在用多世界创造的普通世界中创造地狱传送门进去。再从地狱出来。就会在主城世界的相对地方生成了传送门。如何禁止地狱 传送门的生成或者是禁止使用来解决这个办法呢

Naive。
Ess的功能有这个方法,打开Essentials文件夹中的config,并确安装了EssentialsProtect.jar:
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # |                 EssentialsProtect                    | #
  4. # +------------------------------------------------------+ #
  5. ############################################################

  6. # 需要安装有 EssentialsProtect.jar 才能正常工作

  7. protect:

  8.   # 总体的物理现象或行为的设置
  9.   prevent:                                 # 阻止以下现象(译注:true就是阻止,false是允许,这里需要注意一下)
  10.     lava-flow: false                       # 阻止 岩浆的流动
  11.     water-flow: false                      # 阻止 水的流动
  12.     water-bucket-flow: false               # 阻止 水桶水的流动
  13.     fire-spread: true                      # 阻止 火的传播
  14.     lava-fire-spread: true                 # 阻止 岩浆引起的火的传播
  15.     flint-fire: false                      # 阻止 打火石产生的火的传播
  16.     lightning-fire-spread: true            # 阻止 闪电引起的火的传播
  17.     portal-creation: true                  # 阻止 传送门的创造
  18.     tnt-explosion: true                    # 阻止 TNT的爆炸
  19.     tnt-playerdamage: false                # 阻止 TNT对玩家造成伤害
  20.     tnt-minecart-explosion: true           # 阻止 TNT矿车爆炸
  21.     tnt-minecart-playerdamage: false       # 阻止 TNT矿车对玩家造成伤害
  22.     fireball-explosion: true               # 阻止 火球的爆炸(译注:恶魂发射的火球)
  23.     fireball-fire: false                   # 阻止 火球的燃烧
  24.     fireball-playerdamage: false           # 阻止 火球对玩家造成伤害
  25.     witherskull-explosion: false           # 阻止 凋零的爆炸
  26.     witherskull-playerdamage: false        # 阻止 凋零对玩家造成伤害
  27.     wither-spawnexplosion: false           # 阻止 凋零出生时的爆炸
  28.     wither-blockreplace: true              # 阻止 凋零炸毁方块
  29.     creeper-explosion: false               # 阻止 爬行者的爆炸
  30.     creeper-playerdamage: false            # 阻止 爬行者对玩家造成伤害
  31.     creeper-blockdamage: true              # 阻止 爬行者炸毁方块
  32.     enderdragon-blockdamage: true          # 阻止 末影龙破坏方块
  33.     enderman-pickup: true                  # 阻止 末影人拾取方块
  34.     villager-death: false                  # 阻止 村民被杀死
  35.     # 若改为true,怪物将不会跟随玩家
  36.     # 具有权限"essentials.protect.entitytarget.bypass"的玩家将无视该项。
  37.     entitytarget: false
  38.     # 阻止生物的出生(true就是阻止,false是允许)
复制代码

中更改
  1. portal-creation: true                  # 阻止 传送门的创造
复制代码
为true即可

1374825703
Naive。 发表于 2020-7-6 12:08
Ess的功能有这个方法,打开Essentials文件夹中的config,并确安装了EssentialsProtect.jar:

中更改为true即 ...

感谢大佬