Added time-to-exempt config option for Tornado enchantment and started exempting players that were hit by Tornado from being detectedf by AntiCheats.

This commit is contained in:
_OfTeN_ 2021-10-11 11:44:35 +03:00
parent ff31c177b7
commit f1e5173b12
2 changed files with 11 additions and 2 deletions

View File

@ -1,9 +1,11 @@
package com.willfp.ecoenchants.enchantments.ecoenchants.normal;
import com.willfp.eco.core.integrations.anticheat.AnticheatManager;
import com.willfp.ecoenchants.enchantments.EcoEnchant;
import com.willfp.ecoenchants.enchantments.EcoEnchants;
import com.willfp.ecoenchants.enchantments.meta.EnchantmentType;
import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player;
import org.bukkit.event.entity.EntityDamageByEntityEvent;
import org.bukkit.util.Vector;
import org.jetbrains.annotations.NotNull;
@ -25,6 +27,12 @@ public class Tornado extends EcoEnchant {
Vector toAdd = new Vector(0, yVelocity, 0);
this.getPlugin().getScheduler().runLater(() -> victim.setVelocity(victim.getVelocity().clone().add(toAdd)), 1);
this.getPlugin().getScheduler().runLater(() -> {
if (victim instanceof Player player) {
AnticheatManager.exemptPlayer(player);
this.getPlugin().getScheduler().runLater(() -> AnticheatManager.unexemptPlayer(player), this.getConfig().getInt("time-to-exempt"));
}
victim.setVelocity(victim.getVelocity().clone().add(toAdd));
}, 1);
}
}

View File

@ -29,4 +29,5 @@ general-config:
maximum-level: 2
config:
velocity-per-level: 0.25
velocity-per-level: 0.25
time-to-exempt: 60 #In ticks. Time to exempt hit player from being detected by your Anti-Cheat for flying (The higher max velocity is - the higher should be this value)