summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2017-01-23 02:03:22 -0600
committercheapie <no-email-for-you@example.com>2017-01-23 02:03:22 -0600
commit44b1586414433792dc9f727860d8ad25f092cfd9 (patch)
treebb992e6755028975d687804ebd5dab4190ffaf34
parentb181837dc920778cbb4f97c92cc46eeae96e5117 (diff)
downloadrgblightstone-44b1586414433792dc9f727860d8ad25f092cfd9.tar
rgblightstone-44b1586414433792dc9f727860d8ad25f092cfd9.tar.gz
rgblightstone-44b1586414433792dc9f727860d8ad25f092cfd9.tar.bz2
rgblightstone-44b1586414433792dc9f727860d8ad25f092cfd9.tar.xz
rgblightstone-44b1586414433792dc9f727860d8ad25f092cfd9.zip
Remove LBM
-rw-r--r--init.lua14
1 files changed, 0 insertions, 14 deletions
diff --git a/init.lua b/init.lua
index ce49349..1639067 100644
--- a/init.lua
+++ b/init.lua
@@ -126,20 +126,6 @@ minetest.register_node("rgblightstone:rgblightstone", {
}
})
-minetest.register_lbm({
- name = "rgblightstone:remove_entities",
- nodenames = {"rgblightstone:rgblightstone"},
- label = "Remove old rgblightstone entities",
- action = function(pos)
- local objs = minetest.get_objects_inside_radius(pos,0.5)
- for _,obj in ipairs(objs) do
- if obj:get_luaentity() and obj:get_luaentity().name == "rgblightstone:entity" then
- obj:remove()
- end
- end
- end
-})
-
minetest.register_craft({
output = "rgblightstone:lightstone",