mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 11:57:34 -07:00
Fix bug
This commit is contained in:
parent
3e8adac65f
commit
da4f41da19
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ export class AiScript {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (AiScript.envVarsDef[name]) {
|
if (AiScript.envVarsDef[name]) {
|
||||||
return this.envVars[name].value;
|
return this.envVars[name];
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Error(`Script: No such variable '${name}'`);
|
throw new Error(`Script: No such variable '${name}'`);
|
||||||
|
|
Loading…
Reference in a new issue