Skip to content
Snippets Groups Projects
Commit 14b99a72 authored by tenplus1's avatar tenplus1 Committed by paramat
Browse files

Tnt: Limit blown up dropped stacks to stack_max

This replaces the hardcoded 99 item limit and instead uses the
get_stack_max() limit for each item.
parent 76211624
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ end
local function eject_drops(drops, pos, radius)
local drop_pos = vector.new(pos)
for _, item in pairs(drops) do
local count = math.min(item:get_count(), 99)
local count = math.min(item:get_count(), item:get_stack_max())
while count > 0 do
local take = math.max(1,math.min(radius * radius,
count,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment