KEY_OPTIONS -> KEY_OPTION

This commit is contained in:
Tim Mickel 2016-09-07 15:57:53 -04:00 committed by GitHub
parent 3dbfc3fdb6
commit 3fcd70a802

View file

@ -66,7 +66,7 @@ Scratch3SensingBlocks.prototype.keyOptions = function (args) {
};
Scratch3SensingBlocks.prototype.getKeyPressed = function (args, util) {
return util.ioQuery('keyboard', 'getKeyIsDown', args.KEY_OPTIONS);
return util.ioQuery('keyboard', 'getKeyIsDown', args.KEY_OPTION);
};
module.exports = Scratch3SensingBlocks;