Add files via upload

master
Jared Landers 2019-05-30 21:30:11 -07:00 committed by GitHub
parent 2bbc856f65
commit c32f6a296d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,9 @@ multiplacer.activate = function(player, material, pointed_thing, mode)
if minetest.get_item_group(material, "liquid") > 0 then
return nil;
end
-- if minetest.get_draw_type(material, "liquid") then
-- return nil;
-- end
if( player == nil or pointed_thing == nil) then
return nil;
end
@ -49,7 +52,7 @@ end
minetest.register_tool("multiplacer:multiplacer", {
description = "Placer Tool",
inventory_image = "multiplacer_multiplacer.png",
liquids_pointable = true
liquids_pointable = true,
tool_capabilities = {
full_punch_interval = 0.9,
max_drop_level = 0,