diff options
author | orwell96 <mono96.mml@gmail.com> | 2016-06-09 22:16:24 +0200 |
---|---|---|
committer | orwell96 <mono96.mml@gmail.com> | 2016-06-09 22:16:24 +0200 |
commit | 4e6c147d56c8cf31f80804da2250d90f8ef60d9d (patch) | |
tree | 42fa499884f613eb6d383bb967d11517e83f69cf /wagons.lua | |
parent | f9a7fa68b176f499375e1b6cbffcf5f2c52317e1 (diff) | |
download | advtrains-4e6c147d56c8cf31f80804da2250d90f8ef60d9d.tar.gz advtrains-4e6c147d56c8cf31f80804da2250d90f8ef60d9d.tar.bz2 advtrains-4e6c147d56c8cf31f80804da2250d90f8ef60d9d.zip |
check for object load via the getyaw trick and not by checking the object table
Diffstat (limited to 'wagons.lua')
-rw-r--r-- | wagons.lua | 16 |
1 files changed, 5 insertions, 11 deletions
@@ -129,7 +129,7 @@ function wagon:on_punch(puncher, time_from_last_punch, tool_capabilities, direct table.remove(self:train().trainparts, self.pos_in_trainparts)
advtrains.update_trainpart_properties(self.train_id)
advtrains.wagon_save[self.unique_id]=nil
- if self.discouple_id and minetest.object_refs[self.discouple_id] then minetest.object_refs[self.discouple_id]:remove() end
+ if self.discouple then self.discouple.object:remove() end--will have no effect on unloaded objects
return
@@ -189,27 +189,21 @@ function wagon:on_step(dtime) --DisCouple
if self.pos_in_trainparts and self.pos_in_trainparts>1 then
if gp.velocity==0 then
- if not self.discouple_id or not minetest.luaentities[self.discouple_id] then
+ if not self.discouple or not self.discouple.object:getyaw() then
local object=minetest.add_entity(pos, "advtrains:discouple")
if object then
- print("spawning discouple")
local le=object:get_luaentity()
le.wagon=self
--box is hidden when attached, so unuseful.
--object:set_attach(self.object, "", {x=0, y=0, z=self.wagon_span*10}, {x=0, y=0, z=0})
- --find in object_refs
- for aoi, compare in pairs(minetest.object_refs) do
- if compare==object then
- self.discouple_id=aoi
- end
- end
+ self.discouple=le
else
print("Couldn't spawn DisCouple")
end
end
else
- if self.discouple_id and minetest.luaentities[self.discouple_id] then
- minetest.object_refs[self.discouple_id]:remove()
+ if self.discouple and self.discouple.object:getyaw() then
+ self.discouple.object:remove()
end
end
end
|