Disable some logging

This commit is contained in:
tobspr 2020-06-26 17:46:12 +02:00
parent 857b79cac0
commit 9a6029279d
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
export const CHANGELOG = [ export const CHANGELOG = [
{ {
version: "1.1.18", version: "1.1.18",
date: "24.06.2020", date: "26.06.2020",
entries: [ entries: [
"Huge belt performance improvements - up to 50% increase",
"Preparations for the wires update", "Preparations for the wires update",
"Update belt placement performance on huge factories (by Phlosioneer)", "Update belt placement performance on huge factories (by Phlosioneer)",
"Allow clicking on variants to select them", "Allow clicking on variants to select them",

View File

@ -236,7 +236,7 @@ export class BeltSystem extends GameSystemWithFilter {
* Verifies all belt paths * Verifies all belt paths
*/ */
verifyBeltPaths() { verifyBeltPaths() {
if (G_IS_DEV) { if (G_IS_DEV && false) {
for (let i = 0; i < this.beltPaths.length; ++i) { for (let i = 0; i < this.beltPaths.length; ++i) {
this.beltPaths[i].debug_checkIntegrity("general-verify"); this.beltPaths[i].debug_checkIntegrity("general-verify");
} }