Fixed stray semicolon in action test

This commit is contained in:
Thaum Rystra
2024-01-09 11:41:14 +02:00
parent cab5215b24
commit 73a36678b9

View File

@@ -9,7 +9,7 @@ import computeCreature from '/imports/api/engine/computeCreature';
import { loadCreature } from '/imports/api/engine/loadCreatures';
const creatureId = Random.id();
const targetId; = Random.id();
const targetId = Random.id();
describe('Interrupt action system', function () {
let unload: (() => void) | undefined = undefined;