diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-01 19:45:05 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-01 19:45:05 +0900 |
| commit | 76f37671b4269fd48a8756d9529362177dc3dd6b (patch) | |
| tree | ea81e2ace34104f48a9251bd631868f92a0a2c07 /src/misc | |
| parent | Fix types (diff) | |
| download | sharkey-76f37671b4269fd48a8756d9529362177dc3dd6b.tar.gz sharkey-76f37671b4269fd48a8756d9529362177dc3dd6b.tar.bz2 sharkey-76f37671b4269fd48a8756d9529362177dc3dd6b.zip | |
:art:
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/aiscript/index.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/misc/aiscript/index.ts b/src/misc/aiscript/index.ts index 16f80830ff..711cfb41eb 100644 --- a/src/misc/aiscript/index.ts +++ b/src/misc/aiscript/index.ts @@ -3,7 +3,8 @@ */ import { - faSuperscript, + faMagic, + faSquareRootAlt, faAlignLeft, faShareAlt, faPlus, @@ -86,8 +87,8 @@ export const literalDefs: Record<string, { out: any; category: string; icon: any multiLineText: { out: 'string', category: 'value', icon: faAlignLeft, }, textList: { out: 'stringArray', category: 'value', icon: faList, }, number: { out: 'number', category: 'value', icon: faSortNumericUp, }, - ref: { out: null, category: 'value', icon: faSuperscript, }, - fn: { out: 'function', category: 'value', icon: faSuperscript, }, + ref: { out: null, category: 'value', icon: faMagic, }, + fn: { out: 'function', category: 'value', icon: faSquareRootAlt, }, }; export const blockDefs = [ |