Showing with 3 additions and 3 deletions.
  1. +3 −3 src/main/java/codechicken/lib/render/CCRenderState.java
6 changes: 3 additions & 3 deletions src/main/java/codechicken/lib/render/CCRenderState.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static VertexAttribute<?> getAttribute(int index) {
/**
* Management class for a vertex attrute such as colour, normal etc This class should handle the loading of the
* attrute from an array provided by IVertexSource.getAttributes or the computation of this attrute from others
*
*
* @param <T> The array type for this attrute eg. int[], Vector3[]
*/
public abstract static class VertexAttribute<T> implements IVertexOperation {
Expand Down Expand Up @@ -146,7 +146,7 @@ public interface IVertexSource {

/**
* Gets an array of vertex attrutes
*
*
* @param attr The vertex attrute to get
* @param <T> The attrute array type
* @return An array, or null if not computed
Expand Down Expand Up @@ -503,7 +503,7 @@ public static void setBrightness(IBlockAccess world, int x, int y, int z) {
instance().setBrightnessInstance(world, x, y, z);
}

public static void pullLightMap() {
public static void pullLightmap() {
instance().pullLightmapInstance();
}

Expand Down