Skip to content

Commit

Permalink
Update MazeGenerator.java
Browse files Browse the repository at this point in the history
  • Loading branch information
LudoCrypt committed May 13, 2022
1 parent 6a7a870 commit acc6626
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void generateMaze(BlockPos pos, Chunk chunk, ChunkRegion region, T chunkG

public abstract void decorateCell(BlockPos pos, BlockPos origin, Chunk chunk, ChunkRegion region, T chunkGenerator, CellState state, boolean isOpen, boolean isWall, boolean isTopCell, boolean isSideCell, int thickness);

public abstract Codec<? extends MazeGenerator<T>> getCodec();
public abstract Codec<? extends MazeGenerator<? extends ChunkGenerator>> getCodec();

protected int mod(int x, int n) {
int r = x % n;
Expand Down

0 comments on commit acc6626

Please sign in to comment.