Skip to content

Commit befddf9

Browse files
committed
corrected syntax in AIOptions.lua
1 parent f7d89d2 commit befddf9

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

data/AIOptions.lua

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,31 +26,23 @@ local options = {
2626
key="maphack",
2727
name="Activatd Maphack",
2828
desc="does the AI use maphack to find your units?",
29-
type='boolean',
29+
type='bool',
3030
def=true,
3131
},
3232
{
3333
key="guiactivated",
3434
name="Activate GUI",
3535
desc="Activates GUI. Mostly useful for developers. Make sure to play in windowed mode if this is activated!",
36-
type='boolean',
36+
type='bool',
3737
def=true,
3838
},
3939
{
4040
key="debug",
4141
name="Activated debug",
4242
desc="Shows lots of debug info, lines, ghost units and so on, so you can see what the AI is thinking. Turn off for normal usage."
43-
type='boolean',
43+
type='bool',
4444
def=false,
4545
},
46-
{
47-
key="defaultworkflowname",
48-
name="Default workflow name",
49-
desc="Selects the build workflow to use. By default there is only the default workflow, but you can create others, and switch between them here.",
50-
type='list',
51-
def='default',
52-
items='default',
53-
},
5446
}
5547

5648
return options

0 commit comments

Comments
 (0)