Fix fishing allowed in lava.

This commit is contained in:
Rootyjr 2019-07-31 22:34:53 -05:00
parent 48b73f5f2e
commit 37af2dbba1
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@ local bobber_ENTITY={
collisionbox = {0.45,0.45,0.45,0.45,0.45,0.45},
pointable = false,
get_staticdata = get_staticdata,
on_activate = on_activate,
--get_staticdata = get_staticdata,
--on_activate = on_activate,
_lastpos={},
_dive = false,
@ -191,7 +191,7 @@ local bobber_on_step = function(self, dtime)
end
--if in liquid then bob.
if def.liquidtype == "source" then
if def.liquidtype == "source" and def.name == "mcl_core:water" then
if self._oldy == nil then
self.object:set_pos({x=self.object:get_pos().x,y=math.floor(self.object:get_pos().y)+.5,z=self.object:get_pos().z})
self._oldy = self.object:get_pos().y