mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-28 21:25:44 +01:00
commit
3dad427398
@ -1,6 +1,5 @@
|
|||||||
package fr.xephi.authme.listener;
|
package fr.xephi.authme.listener;
|
||||||
|
|
||||||
import org.bukkit.entity.LivingEntity;
|
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.entity.Projectile;
|
import org.bukkit.entity.Projectile;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
@ -16,22 +15,11 @@ import org.bukkit.event.entity.FoodLevelChangeEvent;
|
|||||||
import org.bukkit.event.entity.ProjectileLaunchEvent;
|
import org.bukkit.event.entity.ProjectileLaunchEvent;
|
||||||
import org.bukkit.projectiles.ProjectileSource;
|
import org.bukkit.projectiles.ProjectileSource;
|
||||||
|
|
||||||
import java.lang.reflect.Method;
|
|
||||||
|
|
||||||
import static fr.xephi.authme.listener.ListenerService.shouldCancelEvent;
|
import static fr.xephi.authme.listener.ListenerService.shouldCancelEvent;
|
||||||
|
|
||||||
public class AuthMeEntityListener implements Listener {
|
public class AuthMeEntityListener implements Listener {
|
||||||
|
|
||||||
private static Method getShooter;
|
public AuthMeEntityListener() {}
|
||||||
private static boolean shooterIsProjectileSource;
|
|
||||||
|
|
||||||
public AuthMeEntityListener() {
|
|
||||||
try {
|
|
||||||
Method m = Projectile.class.getDeclaredMethod("getShooter");
|
|
||||||
shooterIsProjectileSource = m.getReturnType() != LivingEntity.class;
|
|
||||||
} catch (Exception ignored) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO #360: npc status can be used to bypass security!!!
|
// TODO #360: npc status can be used to bypass security!!!
|
||||||
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
@EventHandler(ignoreCancelled = true, priority = EventPriority.LOWEST)
|
||||||
@ -96,22 +84,12 @@ public class AuthMeEntityListener implements Listener {
|
|||||||
|
|
||||||
Player player = null;
|
Player player = null;
|
||||||
Projectile projectile = event.getEntity();
|
Projectile projectile = event.getEntity();
|
||||||
if (shooterIsProjectileSource) {
|
if (projectile != null && (projectile.getShooter() instanceof ProjectileSource)) {
|
||||||
ProjectileSource shooter = projectile.getShooter();
|
ProjectileSource shooter = projectile.getShooter();
|
||||||
if (shooter == null || !(shooter instanceof Player)) {
|
if (shooter == null || !(shooter instanceof Player)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
player = (Player) shooter;
|
player = (Player) shooter;
|
||||||
} else {
|
|
||||||
// TODO ljacqu 20151220: Invoking getShooter() with null but method isn't static
|
|
||||||
try {
|
|
||||||
if (getShooter == null) {
|
|
||||||
getShooter = Projectile.class.getMethod("getShooter");
|
|
||||||
}
|
|
||||||
Object obj = getShooter.invoke(null);
|
|
||||||
player = (Player) obj;
|
|
||||||
} catch (Exception ignored) {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ListenerService.shouldCancelEvent(player)) {
|
if (ListenerService.shouldCancelEvent(player)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user