diff --git a/README.md b/README.md index 26619c0..af949eb 100644 --- a/README.md +++ b/README.md @@ -301,6 +301,7 @@ 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. + 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 enable Economy using Vault (must have the Vault plugin) createCost - The cost to create a stargate @@ -367,6 +368,12 @@ bungeeSign=Teleport to # Changes +#### \[Version 0.9.0.4] EpicKnarvik97 fork + +- Adds teleportation of leashed creatures. By default, any creature connected to a player by a lead will be teleported + with the player through stargates, even if the player is in a vehicle. This behavior can be disabled in the config + file. + #### \[Version 0.9.0.3] EpicKnarvik97 fork - Adds a missing error message when a player in a vehicle cannot pay the teleportation fee diff --git a/pom.xml b/pom.xml index c274170..f10ab1c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.knarcraft Stargate - 0.9.0.3 + 0.9.0.4 diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 2505b3b..6867590 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ name: Stargate main: net.knarcraft.stargate.Stargate -version: 0.9.0.3 +version: 0.9.0.4 description: Stargate mod for Bukkit Revived author: EpicKnarvik97 authors: [ Drakia, PseudoKnight, EpicKnarvik97 ]