forked from VoxeLibre/VoxeLibre
Make throwable potion entities non-pointable
This commit is contained in:
parent
f5032503d0
commit
92591b37dc
|
@ -126,7 +126,8 @@ function mcl_potions.register_lingering(name, descr, color, def)
|
|||
textures = {lingering_image(color)},
|
||||
hp_max = 1,
|
||||
visual_size = {x=w/2,y=w/2},
|
||||
collisionbox = {0,0,0,0,0,0},
|
||||
collisionbox = {-0.1,-0.1,-0.1,0.1,0.1,0.1},
|
||||
pointable = false,
|
||||
on_step = function(self, dtime)
|
||||
local pos = self.object:get_pos()
|
||||
local node = minetest.get_node(pos)
|
||||
|
|
|
@ -55,7 +55,8 @@ function mcl_potions.register_splash(name, descr, color, def)
|
|||
textures = {splash_image(color)},
|
||||
hp_max = 1,
|
||||
visual_size = {x=w/2,y=w/2},
|
||||
collisionbox = {0,0,0,0,0,0},
|
||||
collisionbox = {-0.1,-0.1,-0.1,0.1,0.1,0.1},
|
||||
pointable = false,
|
||||
on_step = function(self, dtime)
|
||||
local pos = self.object:get_pos()
|
||||
local node = minetest.get_node(pos)
|
||||
|
|
Loading…
Reference in New Issue