()
| 52 | } |
| 53 | |
| 54 | public static int getWall() { |
| 55 | return Math.clamp(Prefers.getInt("wall", 1), MIN_WALL, MAX_WALL); |
| 56 | } |
| 57 | |
| 58 | public static void putWall(int wall) { |
| 59 | Prefers.put("wall", Math.clamp(wall, MIN_WALL, MAX_WALL)); |
no test coverage detected