Skip to content

Commit 4945f4b

Browse files
committedMay 2, 2021
Carts: Fix 0/0 condition on faulty tool capabilities
1 parent 79e63a8 commit 4945f4b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎mods/carts/cart_entity.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ function cart_entity:on_punch(puncher, time_from_last_punch, tool_capabilities,
134134
end
135135

136136
local punch_interval = 1
137-
if tool_capabilities and tool_capabilities.full_punch_interval then
137+
-- Faulty tool registrations may cause the interval to be set to 0 !
138+
if tool_capabilities and (tool_capabilities.full_punch_interval or 0) > 0 then
138139
punch_interval = tool_capabilities.full_punch_interval
139140
end
140141
time_from_last_punch = math.min(time_from_last_punch or punch_interval, punch_interval)

0 commit comments

Comments
 (0)
Please sign in to comment.