kabou 88ce1e3662 Remove redundant logic.
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.
2022-02-20 18:46:23 +01:00
..
2022-02-13 21:31:03 +01:00
2022-02-20 18:46:23 +01:00
2022-02-19 21:18:01 +01:00
2022-02-09 12:21:28 +01:00
2021-07-10 10:16:55 +08:00
2022-01-02 12:37:20 +00:00
2021-11-19 15:22:40 +01:00
2022-02-19 21:18:01 +01:00
2021-11-21 22:13:24 -03:00
2021-10-15 12:00:37 -07:00
2021-06-15 17:34:45 +00:00