Merge pull request #6800 from Joshua-F/fix/booleanchar

fix: use correct char for boolean type
This commit is contained in:
Abex
2018-12-04 18:22:43 -07:00
committed by GitHub

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"),
/**