Add ability to block chorus fruit and ender pearl teleportation. Fixes #51

This commit is contained in:
Magnus Ulf
2020-01-15 11:32:14 +01:00
parent 8e169ea269
commit e4f0b8e3de
3 changed files with 148 additions and 2 deletions

View File

@@ -477,8 +477,22 @@ public class MConf extends Entity<MConf>
// -------------------------------------------- //
public int unstuckSeconds = 30;
public int unstuckChunkRadius = 10;
public int unstuckChunkRadius = 10;
// -------------------------------------------- //
// ENDER PEARL AND CHORUS FRUIT
// -------------------------------------------- //
public boolean allowEnderPearlInEnemyTerritory = true;
public boolean allowEnderPearlInWildernessTerritory = true;
public boolean allowEnderPearlInOwnTerritory = true;
public boolean allowEnderPearlInOtherTerritory = true;
public boolean allowChorusFruitInEnemyTerritory = true;
public boolean allowChorusFruitInWildernessTerritory = true;
public boolean allowChorusFruitInOwnTerritory = true;
public boolean allowChorusFruitInOtherTerritory = true;
// -------------------------------------------- //
// LOGGING
// -------------------------------------------- //