Skip to content

Commit

Permalink
Beds: Re-add commas at list ends
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Nov 14, 2015
1 parent 1d8def5 commit 4ef6810
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mods/beds/api.lua
Expand Up @@ -13,11 +13,11 @@ function beds.register_bed(name, def)
sounds = default.node_sound_wood_defaults(),
node_box = {
type = "fixed",
fixed = def.nodebox.bottom
fixed = def.nodebox.bottom,
},
selection_box = {
type = "fixed",
fixed = def.selectionbox
fixed = def.selectionbox,
},
after_place_node = function(pos, placer, itemstack)
local n = minetest.get_node_or_nil(pos)
Expand Down Expand Up @@ -94,7 +94,7 @@ function beds.register_bed(name, def)
node_box = {
type = "fixed",
fixed = def.nodebox.top,
}
},
})

minetest.register_alias(name, name .. "_bottom")
Expand Down

1 comment on commit 4ef6810

@kilbith
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it really necessary to have this commit in the git tree ? Please squash it.

Please sign in to comment.