Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions lua/options/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,22 @@ options = {
},
},
},

{
title = '<LOC FACTORY_SHARE_ASSIST>Factories share "Assist" to units',
key = 'factoryShareAssist',
type = 'toggle',
default = "true",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be 'off' by default in my opinion, as it changes the behavior of assist commands for factories that people have been used to for the past 15 or so years.

set = function(key, value, startup)
ConExecute("ui_ShareFactoryAssistCommandToUnits " .. value)
end,
custom = {
states = {
{ text = "<LOC _Off>", key = "false" },
{ text = "<LOC _On>", key = "true" },
},
},
},

{
title = "<LOC ASSIST_TO_UPGRADE>Hold alt to force attack move",
Expand Down
Loading