diff --git a/core/common.ts b/core/common.ts index 44becc809..625921350 100644 --- a/core/common.ts +++ b/core/common.ts @@ -282,7 +282,9 @@ export function defineBlocks(blocks: {[key: string]: BlockDefinition}) { for (const type of Object.keys(blocks)) { const definition = blocks[type]; if (type in Blocks) { - console.warn(`Block definition "${type}" overwrites previous definition.`); + console.warn( + `Block definition "${type}" overwrites previous definition.`, + ); } Blocks[type] = definition; }