enhance(client): AiScriptからカスタム絵文字一覧を参照できるように
This commit is contained in:
parent
0fa602a184
commit
956375e2e8
2 changed files with 3 additions and 0 deletions
|
@ -2,6 +2,7 @@ import { utils, values } from '@syuilo/aiscript';
|
|||
import * as os from '@/os';
|
||||
import { $i } from '@/account';
|
||||
import { miLocalStorage } from '@/local-storage';
|
||||
import { customEmojis } from '@/custom-emojis';
|
||||
|
||||
export function createAiScriptEnv(opts) {
|
||||
let apiRequests = 0;
|
||||
|
@ -9,6 +10,7 @@ export function createAiScriptEnv(opts) {
|
|||
USER_ID: $i ? values.STR($i.id) : values.NULL,
|
||||
USER_NAME: $i ? values.STR($i.name) : values.NULL,
|
||||
USER_USERNAME: $i ? values.STR($i.username) : values.NULL,
|
||||
CUSTOM_EMOJIS: utils.jsToVal(customEmojis),
|
||||
'Mk:dialog': values.FN_NATIVE(async ([title, text, type]) => {
|
||||
await os.alert({
|
||||
type: type ? type.value : 'info',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue