I started the program for the first time, and even could not start to do something in it

Published by Lykora on
Status
Resolved
Issue description

File state
package net.minecraft.client.renderer.entity;
import net.minecraft.entity.monster.AbstractSkeleton;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
public class RenderSkeleton extends RenderBiped<AbstractSkeleton> {
   private static final ResourceLocation field_110862_k;
   public RenderSkeleton(RenderManager param1) {
      // $FF: Couldn't be decompiled
   }
   public void func_82422_c() {
      // $FF: Couldn't be decompiled
   }
   protected ResourceLocation func_110775_a(AbstractSkeleton param1) {
      // $FF: Couldn't be decompiled
   }
   static {
      // $FF: Couldn't be decompiled
   }
}
Patching failed: minecraft\net\minecraft\client\renderer\entity\RenderZombie.java
Hunk 1 failed! Cannot find hunk target
       super(p_i46127_1_, new ModelZombie(), 0.5F);
       LayerBipedArmor layerbipedarmor = new LayerBipedArmor(this) {
          protected void func_177177_a() {
-            this.field_177189_c = (T)(new ModelZombie(0.5F, true));
-            this.field_177186_d = (T)(new ModelZombie(1.0F, true));
+            this.field_177189_c = new ModelZombie(0.5F, true);
+            this.field_177186_d = new ModelZombie(1.0F, true);
          }
       };
       this.func_177094_a(layerbipedarmor);
File state
package net.minecraft.client.renderer.entity;
import net.minecraft.entity.monster.EntityZombie;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
public class RenderZombie extends RenderBiped<EntityZombie> {
   private static final ResourceLocation field_110865_p;
   public RenderZombie(RenderManager param1) {
      // $FF: Couldn't be decompiled
   }
   protected ResourceLocation func_110775_a(EntityZombie param1) {
      // $FF: Couldn't be decompiled
   }
   static {
      // $FF: Couldn't be decompiled
   }
}
:fixMcSources FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':fixMcSources'.
> com.cloudbees.diff.PatchException: Cannot find hunk target
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 29s
5 actionable tasks: 5 executed
BUILD FAILED

 

 

 

Issue comments