mirror of
https://github.com/tacigar/maidroid.git
synced 2025-01-10 16:20:19 +01:00
Fix maidroid's direction when spawned
This commit is contained in:
parent
df08bf8e56
commit
2cb15edb24
@ -314,7 +314,12 @@ function maidroid.register_egg(egg_name, def)
|
|||||||
|
|
||||||
on_use = function(itemstack, user, pointed_thing)
|
on_use = function(itemstack, user, pointed_thing)
|
||||||
if pointed_thing.above ~= nil and def.product_name ~= nil then
|
if pointed_thing.above ~= nil and def.product_name ~= nil then
|
||||||
minetest.add_entity(pointed_thing.above, def.product_name)
|
-- set maidroid's direction.
|
||||||
|
local new_maidroid = minetest.add_entity(pointed_thing.above, def.product_name)
|
||||||
|
new_maidroid:get_luaentity():set_yaw_by_direction(
|
||||||
|
vector.subtract(user:getpos(), new_maidroid:getpos())
|
||||||
|
)
|
||||||
|
|
||||||
itemstack:take_item()
|
itemstack:take_item()
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user