Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions engine.lua
Original file line number Diff line number Diff line change
Expand Up @@ -376,11 +376,11 @@ function GarbageQueue.push(self, garbage)
if metal then
self.metal:push(v)
elseif from_chain or height > 1 then
if not from_chain then
self.chain_garbage:push(v)
if not from_chain then
print("ERROR: garbage with height > 1 was not marked as 'from_chain'")
print("adding it to the chain garbage queue anyway")
end
self.chain_garbage:push(v)
else
self.combo_garbage[width]:push(v)
end
Expand Down