Skip to content
Snippets Groups Projects
Commit be644886 authored by James Stevenson's avatar James Stevenson Committed by Auke Kok
Browse files

Don't allow cut pieces from "forms" into "storage"

parent 3fc8daf2
No related branches found
No related tags found
No related merge requests found
......@@ -171,8 +171,8 @@ function workbench.take(_, listname, _, stack, player)
return stack:get_count()
end
function workbench.move(_, _, _, to_list, _, count)
if to_list == "storage" then return count end
function workbench.move(_, from_list, _, to_list, _, count)
if to_list == "storage" and from_list ~= "forms" then return count end
return 0
end
......
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