Railcraft

Railcraft

34M Downloads

Config file: Most of Tweaks as subcategory of Cart

Vyrebird opened this issue ยท 1 comments

commented

Most of the "Tweaks" section of the config file is included as a subsection of "Cart" - this is inconsistant with 8.2.0.0 behavior, and seems additionally likely to be a bug because it also includes a "Cart" subsection.

It might be easier to show it - here's the current, 8.3.1.0, bugged config hierarchy:

tweaks {
    carts {
        blocks {
            cartdispenser {}
            irontank {}
            signals {}
            machines {}
            boiler {}
        }
        steam {}
        tracks {
            speed {}
            launch {}
        }
        routing {}
        carts {
            general {}
            basic {}
            chest {}
            bore {}
            locomotive {}
            tank {}
        }
    }
}

Instead, it should be:

tweaks {
    blocks {
        cartdispenser {}
        irontank {}
        signals {}
        machines {}
        boiler {}
    }
    steam {}
    tracks {
        speed {}
        launch {}
    }
    routing {}
    carts {
        general {}
        basic {}
        chest {}
        bore {}
        locomotive {}
        tank {}
    }
}
commented

Indeed.