Update 'Configuration'

Kristian Knarvik 2021-11-03 17:01:09 +01:00
parent b74a72de92
commit c4ae2ef5a6

@ -20,6 +20,9 @@ gates:
functionality:
enableBungee - Enable this for BungeeCord support. This allows portals across Bungee servers.
handleVehicles - Whether or not to handle vehicles going through gates. Set to false to disallow vehicles (Manned or not) going through gates.
handleEmptyVehicles - Whether or not to handle empty vehicles going through gates (chest/hopper/tnt/furnace minecarts included).
handleCreatureTransportation - Whether or not to handle players that transport creatures by sending vehicles (minecarts, boats) through gates.
handleNonPlayerVehicles - Whether or not to handle vehicles with a passenger which is not a player going through gates (pigs, horses, villagers, creepers, etc.). handleCreatureTransportation must be enabled.
handleLeashedCreatures - Whether or not to handle creatures leashed by a player going through gates. Set to false to disallow leashed creatures going through gates.
economy:
useEconomy - Whether or not to use Economy
@ -32,4 +35,10 @@ economy:
debugging:
debug - Whether to show massive debug output
permissionDebug - Whether to show massive permission debug output
```
```
### Vehicle teleportation options
* handleVehicles disables all vehicle teleportation, no matter what if disabled
* handleEmptyVehicles disables teleportation of all vehicles without a passenger if disabled. This also disables teleportation of chest/hopper/tnt/furnace minecarts.
* handleCreatureTransportation disables all teleportation of non-players if disabled. This prevents players from using boats or minecarts to transport pigs, creepers, pandas, etc. through stargates
* handleNonPlayerVehicles disables all teleportation of vehicles containing one or more passengers, none of which is a player. As permissions for teleportation cannot be checked unless a player is teleporting, disabling this will prevent any bypassing of permissions by creatures. This will still allow players to transport creatures using boats, as the player controlling the boat can authorize the teleportation.