public void entityInteractEvent(EntityInteractEvent e)
{
if (FMLCommonHandler.instance().getEffectiveSide().isClient())
return;
UserIdent ident = new UserIdent(e.entityPlayer);
WorldPoint point = new WorldPoint(e.entityPlayer.dimension, (int) e.target.posX, (int) e.target.posY, (int) e.target.posZ);
String permission = ModuleProtection.PERM_INTERACT_ENTITY + "." + e.target.getClass().getSimpleName();
if (ModuleProtection.isDebugMode(e.entityPlayer))
OutputHandler.chatNotification(e.entityPlayer, permission);
if (!APIRegistry.perms.checkUserPermission(ident, point, ModuleProtection.PERM_OVERRIDE_INTERACT_ENTITY)