Carts: Increase power rail acceleration to help climbs
authorparamat <mat.gregory@virginmedia.com>
Fri, 25 Nov 2016 02:04:12 +0000 (02:04 +0000)
committerparamat <mat.gregory@virginmedia.com>
Sun, 27 Nov 2016 03:27:53 +0000 (03:27 +0000)
This is partly a workaround for a bug.
Climbs with continuous power rails were failing often due to
unexplained losses of speed leading to a reversal of direction.
The lack of acceleration on climbs meant that lost speed was not
regained.
Keeping cart speed at maximum on climbs helps reduce the chance of
reversals.

This also allows players to slowly accelerate up to full speed on a
climb without needing a horizontal run-up to reach full speed first.
It may not be possible to build the horizontal sections needed, or,
if players are replacing a previous carts mod their track
constructions, bridges, tunnels etc. will often not have the
horizontal sections needed.
Players will also sometimes need to place and enter a cart on a slope
and be able to climb.

mods/carts/rails.lua

index f929e84ed870ae09df2f9c4d509a4162d4cf7a2c..5da4ac4d40d95c14d53b73f6e79aa7822f08badd 100644 (file)
@@ -20,6 +20,7 @@ minetest.register_craft({
 
 minetest.register_alias("default:rail", "carts:rail")
 
+
 carts:register_rail("carts:powerrail", {
        description = "Powered rail",
        tiles = {
@@ -27,7 +28,7 @@ carts:register_rail("carts:powerrail", {
                "carts_rail_t_junction_pwr.png", "carts_rail_crossing_pwr.png"
        },
        groups = carts:get_rail_groups(),
-}, {acceleration = 4})
+}, {acceleration = 5})
 
 minetest.register_craft({
        output = "carts:powerrail 8",
@@ -38,6 +39,7 @@ minetest.register_craft({
        }
 })
 
+
 carts:register_rail("carts:brakerail", {
        description = "Brake rail",
        tiles = {
@@ -47,7 +49,6 @@ carts:register_rail("carts:brakerail", {
        groups = carts:get_rail_groups(),
 }, {acceleration = -3})
 
-
 minetest.register_craft({
        output = "carts:brakerail 8",
        recipe = {