From b2f0296630235ab702eb626d205ef4a58eb51ec5 Mon Sep 17 00:00:00 2001 From: Player Name Date: Thu, 30 Jul 2026 20:11:50 +0200 Subject: [PATCH] make constants final --- Server/src/main/core/game/world/map/RegionChunk.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Server/src/main/core/game/world/map/RegionChunk.java b/Server/src/main/core/game/world/map/RegionChunk.java index f8423cb1f..a252921f0 100644 --- a/Server/src/main/core/game/world/map/RegionChunk.java +++ b/Server/src/main/core/game/world/map/RegionChunk.java @@ -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.