add more values to default to boolean

This commit is contained in:
O-01-67 2022-10-10 12:14:51 -04:00 committed by GitHub
parent 515af4a28b
commit f4bda72c8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,7 @@ trueSynonyms = ["true", "t", "1", "yes"];
falseSynonyms = ["false", "f", "0", "no"];
defaultStringTypeValues = ["element","color","clone","changeTo","void"];
defaultNumberTypeValues = ["x","y","temp","start","vx","vy","chargeCD","start","burnStart","dir","panic","r"];
defaultBooleanTypeValues = ["burning","charge","dead"];
defaultBooleanTypeValues = ["burning","charge","dead","hissing","following","dirLocked","del"];
commandHelpObject = {
"set": "Sets properties for every pixel of a given type.\nUsage: set [property] [element] [value] <type>\nDon't include framing characters []<>.\nThe element can be \"all\" to set the property for every pixel.\nNote: Strings can't have spaces because spaces are the separator used in the parsing split().\nArguments in [brackets] are required and ones in <angle brackets> are optional.",
"test": "Test.",
@ -372,4 +372,3 @@ function funniPrompt(argument=null,alertOutput=true,alertError=true) {
return false;
};
};