mirror of
https://github.com/barkeser2002/CatServer.git
synced 2026-09-25 05:19:55 +03:00
43 lines
1017 B
Diff
43 lines
1017 B
Diff
--- ../src-base/minecraft/net/minecraft/client/model/ModelRenderer.java
|
|
+++ ../src-work/minecraft/net/minecraft/client/model/ModelRenderer.java
|
|
@@ -9,7 +9,6 @@
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
-@SideOnly(Side.CLIENT)
|
|
public class ModelRenderer
|
|
{
|
|
public float textureWidth;
|
|
@@ -108,6 +107,7 @@
|
|
this.rotationPointZ = rotationPointZIn;
|
|
}
|
|
|
|
+ @SideOnly(Side.CLIENT)
|
|
public void render(float scale)
|
|
{
|
|
if (!this.isHidden)
|
|
@@ -189,6 +189,7 @@
|
|
}
|
|
}
|
|
|
|
+ @SideOnly(Side.CLIENT)
|
|
public void renderWithRotation(float scale)
|
|
{
|
|
if (!this.isHidden)
|
|
@@ -224,6 +225,7 @@
|
|
}
|
|
}
|
|
|
|
+ @SideOnly(Side.CLIENT)
|
|
public void postRender(float scale)
|
|
{
|
|
if (!this.isHidden)
|
|
@@ -265,6 +267,7 @@
|
|
}
|
|
}
|
|
|
|
+ @SideOnly(Side.CLIENT)
|
|
private void compileDisplayList(float scale)
|
|
{
|
|
this.displayList = GLAllocation.generateDisplayLists(1);
|