We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e7bd16 commit b7cb9a3Copy full SHA for b7cb9a3
src/addons/addons/cat-blocks/userscript.js
@@ -276,7 +276,8 @@ export default async function ({ addon, console }) {
276
this.sa_catBlockConstructor();
277
}
278
const r = originalRenderDraw.call(this, ...args);
279
- if (this.output_ === undefined && (!this.outputConnection && !this.previousConnection)) {
+ if (this.output_ !== undefined) return r;
280
+ if (!this.outputConnection && !this.previousConnection) {
281
this.initCatStuff();
282
283
if (this.startHat_ && !this.svgFace_.firstChild) {
0 commit comments