mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-03-16 02:52:30 +01:00
The function on_place_bucket contains the following logic: if not a and not b then return x end if a then foo(a) elseif b then foo(b) else return x end The "if not a and not b then .." is removed because the case is handled by the else case later on. This will allow some further simplifications.