built on 04/09/2021 21:55:52

This commit is contained in:
Joachim Stolberg 2021-09-04 21:55:52 +02:00
parent 91cc445eb3
commit 959356399f
2 changed files with 4 additions and 2 deletions

View File

@ -256,11 +256,13 @@ minetest.register_chatcommand("stopcart", {
local entity = minetest.luaentities[data.objID]
if entity then -- cart entity running
minecart.entity_to_node(player_pos, entity)
minecart.monitoring_remove_cart(owner, userID)
end
else
local pos = data.last_pos or data.pos
local cargo, owner, userID = minecart.remove_nodecart(pos)
local cargo, _, _ = minecart.remove_nodecart(pos)
minecart.add_nodecart(player_pos, data.node_name, 0, cargo, owner, userID)
minecart.monitoring_remove_cart(owner, userID)
end
return true, S("Cart") .. " " .. userID .. " " .. S("stopped")
else

View File

@ -231,7 +231,7 @@ minetest.register_globalstep(function(dtime)
if ctrl > 0 then
minetest.add_particle({
pos = pos,
vel = {x = vel.x, y = vel.y - 10, z = vel.z},
velocity = {x = vel.x, y = vel.y - 10, z = vel.z},
expirationtime = 1,
size = 5,
vertical = false,