diff --git a/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Rebounding.java b/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Rebounding.java index f22d8a86..1da6bd04 100644 --- a/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Rebounding.java +++ b/eco-core/core-plugin/src/main/java/com/willfp/ecoenchants/enchantments/ecoenchants/normal/Rebounding.java @@ -46,7 +46,7 @@ public class Rebounding extends EcoEnchant { } Vector vector = attacker.getLocation().toVector().clone().subtract(victim.getLocation().toVector()).normalize() - .multiply((-level * (this.getConfig().getDouble(EcoEnchants.CONFIG_LOCATION + "velocity-multiplier") - 1)) + 1); + .multiply((level * (this.getConfig().getDouble(EcoEnchants.CONFIG_LOCATION + "velocity-multiplier") - 1)) + 1); if (!VectorUtils.isFinite(vector)) { return; diff --git a/eco-core/core-plugin/src/main/resources/enchants/normal/rebounding.yml b/eco-core/core-plugin/src/main/resources/enchants/normal/rebounding.yml index 37eaeb98..77b2b9b4 100644 --- a/eco-core/core-plugin/src/main/resources/enchants/normal/rebounding.yml +++ b/eco-core/core-plugin/src/main/resources/enchants/normal/rebounding.yml @@ -24,4 +24,4 @@ general-config: maximum-level: 2 config: - velocity-multiplier: 1.2 + velocity-multiplier: 1.5