mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
Fixed logic error
This commit is contained in:
parent
f86ff01b31
commit
826d5d3b99
@ -282,7 +282,7 @@ end
|
||||
local function capsule_used(event)
|
||||
local item = event.item
|
||||
|
||||
if not item or not item.valid or not item.name == 'raw-fish' then
|
||||
if not item or not item.valid or item.name ~= 'raw-fish' then
|
||||
return
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user