Вылет при запуске

Вылетает при запуске, idea пишет ошибки:
Caused by: java.lang.IllegalArgumentException
Caused by: java.lang.IllegalArgumentException: class net.minecraft.entity.player.EntityPlayer declares multiple JSON fields named capabilities
Process 'command 'C:\Users\user\.jdks\corretto-1.8.0_302\bin\java.exe'' finished with non-zero exit value -1
 
7,099
324
1,510
net.minecraftforge.fml.common.LoaderException: java.lang.ClassNotFoundException: com.rayferric.havook.proxy.ClientProxy
at net.minecraftforge.fml.common.ProxyInjector.inject(ProxyInjector.java:102)
Проверь аннотацию @SidedProxy, видимо, указано неправильное полное имя клиентской прокси
 
Нет, проблема в другом, вот код в котором ошибка
Java:
@SubscribeEvent
    public void onLocalPlayerUpdate() {
        if (name.equals("tick")) {
            if (mc.player == null && mc.world == null) return;
            mc.world.loadedEntityList.stream().forEach(entity -> {
                if (entity == null && entity == mc.player && !(entity instanceof EntityPlayer)) return;
                EntityPlayer player = (EntityPlayer) entity;
                player.setEntityBoundingBox
                        (
                                new AxisAlignedBB
                                        (
                                                player.posX - (size + customWidth.value),
                                                player.getEntityBoundingBox().minY,
                                                player.posZ - (size + customWidth.value),
                                                player.posX + (size + customWidth.value),
                                                player.getEntityBoundingBox().maxY,
                                                player.posZ + (size + customWidth.value)
                                        )
                        );
            });
        }
    }
 
7,099
324
1,510
Сверху