Open littlej541 opened 2 years ago
https://github.com/belkorin/minecraft-MorePaths/blob/2ffd1f62991227e53c7b2f45deae5c05cf602669/src/main/java/net/arcanecitadel/morepaths/config/ServerConfig.java#L32
This line checks if the block that is trying to be "pathed" is Blocks.SNOW, which is the block that appears on top of others when it snows in game. It should instead be Blocks.SNOW_BLOCK, which is the full snow block.
Blocks.SNOW
Blocks.SNOW_BLOCK
https://github.com/belkorin/minecraft-MorePaths/blob/2ffd1f62991227e53c7b2f45deae5c05cf602669/src/main/java/net/arcanecitadel/morepaths/config/ServerConfig.java#L32
This line checks if the block that is trying to be "pathed" is
Blocks.SNOW
, which is the block that appears on top of others when it snows in game. It should instead beBlocks.SNOW_BLOCK
, which is the full snow block.