Aleksei-bird 7c9c708c92 Первый фикс
Пачки некоторых позиций увеличены
2024-03-01 20:54:33 +03:00

18 lines
381 B
Lua

local dictionary = require("__flib__/dictionary-lite")
local global_data = {}
function global_data.init()
global.players = {}
global.update_search_results = {}
end
function global_data.build_dictionary()
dictionary.new("item")
for name, prototype in pairs(game.item_prototypes) do
dictionary.add("item", name, prototype.localised_name)
end
end
return global_data