summaryrefslogtreecommitdiff
path: root/luaentity.lua
AgeCommit message (Collapse)Author
2021-02-07Various small fixesHybridDog
* Save the fakeplayer's wielded item in set_wielded_item * pipeworks.luaentity: Return the found objects in get_objects_inside_radius * Remove the invalid and unused on_blast return values in lua_tube.lua This should avoid a crash when a strong explosion happens next to a Lua Tube. * Do not access a global "nodename" in a BUG message. This avoids a potential crash, in case the message actually appears in practice. * Set the Flow Sensor and Fountain Head mesecons connection rules * pipeworks.luaentity: Use the same function for move_to and set_pos * (no functional change) Do not save the object returned by tube_inject_item into the "item1" local variable in filter-injector.lua
2021-02-05Remove unused loop variables, trailing whitespace and fix mixed-whitespace ↵HybridDog
indentations
2020-12-18Prevent the symptoms of Issue #33Skgland
Try to prevent the crash from issue #33 by replaving nil velocity or acceleration with (0,0,0). This does not fix the underlying cause of them being nil, but should prevent the crash.
2019-06-06Prevent another crash if minetest crashes during startupPedro Gimeno
2018-07-04Fix get_pos crash since 92a55c3SmallJoker
2018-07-03Replace deprecated Lua function callsSmallJoker
2017-07-03Adjust rate control code to work betterVanessa Ezekowitz
now it'll run at full speed if there's enough time else it'll throttle back to 1/3. (at that point, the movement imprecision caused by this will become hidden behind lag-induced imprecision)
2017-05-18Replace deprecated methods: (#179)Jordan Irwin
- 'setting_get' with 'settings:get' - 'setting_getbool' with 'settings:get_bool'
2017-04-09cap luaentities table entries to valid coords on loadVanessa Ezekowitz
(in case the file gets corrupted on write?)
2017-04-04Namespace pollution cleanup (Used list at #154)ForbiddenJ
2017-03-31allow pipeworks to skip server steps when moving entities around.Vanessa Ezekowitz
2015-08-01Fix crash when deleting luaentities with //clearobjects.Novatux
2015-06-23Try to fix crash (2)Novatux
2015-06-23Try to fix crashNovatux
2015-06-23Revert "fix multiple crash points if luaentity.entities or values returned from"Novatux
This reverts commit d0952a97fcff08328328d05f630d2b0036a48163.
2015-06-23fix multiple crash points if luaentity.entities or values returned fromVanessa Ezekowitz
luaentity.add_entity() are nil
2015-01-29chmod -x *.luaTim
2014-09-12Fix #73Novatux
2014-08-16Fix possible race condition crashNovatux
2014-08-14Major rewrite of items in tubesNovatux