Fixed ESLint warning.

This commit is contained in:
Daan Vanden Bosch 2020-09-29 18:42:44 +02:00
parent 3c7c3d794b
commit 819c8aaa1c

View File

@ -34,6 +34,7 @@ function print_quest_stats(): void {
for (const [type, npcs] of type_data) {
const props = get_properties(type);
/* eslint-disable no-console */
console.log(NpcType[type]);
console.log(" cnt " + props.map(col_print_name).join(" "));
@ -44,6 +45,7 @@ function print_quest_stats(): void {
` ${quest}`,
);
}
/* eslint-enable no-console */
}
}