Fix crash related to nil _time_in_air

This commit is contained in:
teknomunk 2024-09-05 06:40:01 -05:00
parent b844f23d82
commit 758d8c5545

View file

@ -303,7 +303,7 @@ local arrow_entity = {
-- mcl_burning.tick may remove object immediately
if not self.object:get_pos() then return end
self._time_in_air = self._time_in_air + dtime
self._time_in_air = (self._time_in_air or 0) + dtime
-- Give the arrows a maximum flight time
if self._time_in_air > ARROW_TIMEOUT then