Refactor potion arrow flight time calculation

master
Nils Dagsson Moskopp 2021-07-12 16:07:20 +02:00
parent 99ebf08873
commit 2033a9bf1d
No known key found for this signature in database
GPG Key ID: A3BC671C35191080
1 changed files with 3 additions and 3 deletions

View File

@ -130,7 +130,7 @@ function mcl_potions.register_arrow(name, desc, color, def)
end
ARROW_ENTITY.on_step = function(self, dtime)
self._time_in_air = self._time_in_air + .001
self._time_in_air = self._time_in_air + dtime
local pos = self.object:get_pos()
local dpos = table.copy(pos) -- digital pos
@ -220,7 +220,7 @@ function mcl_potions.register_arrow(name, desc, color, def)
local obj = closest_object
local is_player = obj:is_player()
local lua = obj:get_luaentity()
if obj == self._shooter and self._time_in_air > 1.02 or obj ~= self._shooter and (is_player or (lua and (lua._cmi_is_mob or lua._hittable_by_projectile))) then
if obj == self._shooter and self._time_in_air > 1 or obj ~= self._shooter and (is_player or (lua and (lua._cmi_is_mob or lua._hittable_by_projectile))) then
if obj:get_hp() > 0 then
-- Check if there is no solid node between arrow and object
@ -397,7 +397,7 @@ function mcl_potions.register_arrow(name, desc, color, def)
ARROW_ENTITY.on_activate = function(self, staticdata, dtime_s)
local data = minetest.deserialize(staticdata)
self._time_in_air = 1.0
self._time_in_air = dtime_s
if data then
self._stuck = data.stuck
if data.stuck then