From 7063312135c9f0927a1f51897556d6eefd0681dd Mon Sep 17 00:00:00 2001 From: ThaumRystra Date: Fri, 2 May 2025 18:50:11 +0200 Subject: [PATCH] fix wrong assert imported in app code --- .../api/engine/action/applyProperties/applyDamageProperty.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/imports/api/engine/action/applyProperties/applyDamageProperty.ts b/app/imports/api/engine/action/applyProperties/applyDamageProperty.ts index 7eb11c15..c44ebcc8 100644 --- a/app/imports/api/engine/action/applyProperties/applyDamageProperty.ts +++ b/app/imports/api/engine/action/applyProperties/applyDamageProperty.ts @@ -16,7 +16,7 @@ import InputProvider from '/imports/api/engine/action/functions/userInput/InputP import getEffectivePropTags from '/imports/api/engine/computation/utility/getEffectivePropTags'; import Context from '/imports/parser/types/Context'; import applySavingThrowProperty from '/imports/api/engine/action/applyProperties/applySavingThrowProperty'; -import { assert } from 'chai'; +import assert from 'node:assert'; export default async function applyDamageProperty( task: PropTask, action: EngineAction, result: TaskResult, inputProvider: InputProvider