From 80d766ff014011d194aa6842703c08c7230e8fd2 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Wed, 10 Apr 2024 11:15:23 +0900 Subject: [PATCH] Fix variable comparison in runTrigger function --- src/ts/process/triggers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/process/triggers.ts b/src/ts/process/triggers.ts index 7952aedf..2fcc984a 100644 --- a/src/ts/process/triggers.ts +++ b/src/ts/process/triggers.ts @@ -175,7 +175,7 @@ export async function runTrigger(char:character,mode:triggerMode, arg:{ } break case 'null': - if(varValue !== '[Null]'){ + if(varValue !== 'null'){ pass = false } break