name change to resolve conflict

This commit is contained in:
bluesaxman 2022-02-09 15:25:50 -07:00
parent 40c5eb786e
commit aca2ab4258

View File

@ -119,7 +119,7 @@ class container {
this.shapes.forEach(shape => shape.render(ctx,refPos,refRot)); this.shapes.forEach(shape => shape.render(ctx,refPos,refRot));
} }
if (this.containers.length) { if (this.containers.length) {
this.containers.forEach(container => container.renderContainer(ctx,refPos,refRot)); this.containers.forEach(cont => cont.renderContainer(ctx,refPos,refRot));
} }
} }