driver.love/0046-move_candidate_to_fron...

7 lines
184 B
Plaintext

move_candidate_to_front_of_manifest = function(name)
local index = array.find(Manifest, name)
if index then
table.remove(Manifest, index)
table.insert(Manifest, 1, name)
end
end