fix: use correct char for boolean type

This commit is contained in:
Joshua Filby
2018-12-02 20:40:41 -06:00
parent d5fae8603b
commit 465b20d2ba

View File

@@ -32,7 +32,7 @@ import lombok.AllArgsConstructor;
public enum ScriptVarType
{
INTEGER('i', "integer"),
BOOLEAN('l', "boolean"),
BOOLEAN('1', "boolean"),
SEQ('A', "seq"),
COLOUR('C', "colour"),
/**