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 acc6626 commit b6fb772
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@

public abstract class MazeGenerator<T extends ChunkGenerator> {

@SuppressWarnings("unchecked")
public static final Codec<MazeGenerator<? extends ChunkGenerator>> CODEC = (Codec<MazeGenerator<? extends ChunkGenerator>>) (Object) LimlibRegistries.LIMINAL_MAZE_GENERATOR.getCodec().dispatchStable(MazeGenerator::getCodec, Function.identity());
public static final Codec<MazeGenerator<? extends ChunkGenerator>> CODEC = LimlibRegistries.LIMINAL_MAZE_GENERATOR.getCodec().dispatchStable(MazeGenerator::getCodec, Function.identity());

private final HashMap<BlockPos, MazeComponent> mazes = new HashMap<BlockPos, MazeComponent>(30);

Expand Down

0 comments on commit b6fb772

Please sign in to comment.