belkorin / minecraft-MorePaths

Adds a handful of new path types to minecraft
MIT License
0 stars 0 forks source link

Incorrect block type check causes snow path to be uncreatable #8

Open littlej541 opened 2 years ago

littlej541 commented 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.