make constants final

This commit is contained in:
Player Name 2026-07-30 20:11:50 +02:00
parent 45d9af6778
commit b2f0296630

View file

@ -664,11 +664,11 @@ public class RegionChunk {
/**
* Rotation consts. Greg loves these :)
*/
private static int NORTH_ROTATION = 0;
private static int EAST_ROTATION = 1;
private static int SOUTH_ROTATION = 2;
private static int WEST_ROTATION = 3;
private static int NUMBER_OF_CARDINAL_ROTATIONS = 4;
private final static int NORTH_ROTATION = 0;
private final static int EAST_ROTATION = 1;
private final static int SOUTH_ROTATION = 2;
private final static int WEST_ROTATION = 3;
private final static int NUMBER_OF_CARDINAL_ROTATIONS = 4;
/**
* Rotates the chunk.