fix vehicle bones

This commit is contained in:
Alexsandro Percy 2025-02-16 10:56:49 -03:00
parent 28818bca77
commit 2c75b5f592
2 changed files with 2 additions and 2 deletions

View File

@ -251,10 +251,10 @@ minetest.register_entity("automobiles_vespa:vespa", {
if is_attached == false then
--core.chat_send_all("false")
self.object:set_bone_position("descanso", {x=0, y=-0.4, z=6.2}, {x=90, y=0, z=0})
self.object:set_bone_position("descanso", {x=0, y=-0.4, z=6.2}, {x=-90, y=0, z=0})
else
--core.chat_send_all("true")
self.object:set_bone_position("descanso", {x=0, y=-0.4, z=6.2}, {x=180, y=0, z=0})
self.object:set_bone_position("descanso", {x=0, y=-0.4, z=6.2}, {x=0, y=0, z=0})
end
end,