Since this line is checking for ANY wool block:
|
return (isWool(block) && isRail(blockAbove)); |
We have the issue that the usual cart acceleration does not work on other (like light gray) wool blocks as they are considered control blocks.
We should instead of hard-coding the wool colors, defining block types by control function and put the color into the configuration and then have the line above just check for one of the used colors instead.
Since this line is checking for ANY wool block:
SmartCart/src/main/java/net/f85/SmartCart/SmartCartUtil.java
Line 100 in 05928b5
We have the issue that the usual cart acceleration does not work on other (like light gray) wool blocks as they are considered control blocks.
We should instead of hard-coding the wool colors, defining block types by control function and put the color into the configuration and then have the line above just check for one of the used colors instead.