1
0
mirror of https://github.com/Wyrrrd/Autofilter.git synced 2026-02-10 19:27:14 +01:00
Files
Autofilter/data.lua
Wyrrrd 883a9425ff Fix and add stuff
- Add shortcut tile
- Fix filter mode
- Fix check mode
- Add uk locale
2024-11-06 15:17:53 +01:00

35 lines
795 B
Lua

--data.lua
data:extend(
{
{
type = "tips-and-tricks-item",
name = "autofilter",
tag = "[entity=inserter]",
category = "inserters",
indent = 1,
order = "g",
dependencies = {"inserters"},
},
{
type = "custom-input",
name = "autofilter",
key_sequence = "CONTROL + SHIFT + A",
consuming = "game-only",
action = "lua"
},
{
type = "shortcut",
name = "autofilter",
action = "lua",
order = "h[combatRobot]",
technology_to_unlock = "electronics",
associated_control_input = "autofilter",
toggleable = true,
icon = "__Autofilter__/graphics/autofilter.png",
icon_size = 32,
small_icon = "__Autofilter__/graphics/autofilter-small.png",
small_icon_size = 24,
unavailable_until_unlocked = true,
},
})