mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-01-27 10:10:28 +01:00
Fix: 2 missed calls to 'cart:' into rails.lua
This commit is contained in:
parent
e0a3d098f5
commit
f2e3bb0cd6
@ -82,7 +82,7 @@ minetest.register_node("carts:rail_power", {
|
|||||||
|
|
||||||
after_place_node = function(pos, placer, itemstack)
|
after_place_node = function(pos, placer, itemstack)
|
||||||
minetest.get_meta(pos):set_string("cart_acceleration", "1")
|
minetest.get_meta(pos):set_string("cart_acceleration", "1")
|
||||||
minetest.get_meta(pos):set_string("cart_touring_velocity", cart:get_staticdata().velocity)
|
--minetest.get_meta(pos):set_string("cart_touring_velocity", cart:get_staticdata().velocity)
|
||||||
end,
|
end,
|
||||||
|
|
||||||
--[[mesecons = {
|
--[[mesecons = {
|
||||||
@ -119,7 +119,7 @@ minetest.register_node("carts:rail_power_invisible", {
|
|||||||
|
|
||||||
after_place_node = function(pos, placer, itemstack)
|
after_place_node = function(pos, placer, itemstack)
|
||||||
minetest.get_meta(pos):set_string("cart_acceleration", "10")
|
minetest.get_meta(pos):set_string("cart_acceleration", "10")
|
||||||
minetest.get_meta(pos):set_string("cart_touring_velocity", cart:get_staticdata().velocity)
|
--minetest.get_meta(pos):set_string("cart_touring_velocity", cart:get_staticdata().velocity)
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user