diff --git a/extensions/Lily/HackedBlocks.js b/extensions/Lily/HackedBlocks.js index 3a6b697271..7e4cbf78e4 100644 --- a/extensions/Lily/HackedBlocks.js +++ b/extensions/Lily/HackedBlocks.js @@ -1,10 +1,10 @@ (function (Scratch) { 'use strict'; - class ForLoop { + class HackedBlocks { getInfo() { return { - id: 'lmsForLoop', + id: 'lmsHackedBlocks', name: 'Hacked Block Collection', blocks: [ { @@ -55,9 +55,9 @@ xml: '' }, ] - } + }; } } - Scratch.extensions.register(new ForLoop()); -})(Scratch); \ No newline at end of file + Scratch.extensions.register(new HackedBlocks()); +})(Scratch);