From f802faa461ae102cea802f0781b9e80defa4974e Mon Sep 17 00:00:00 2001
From: Tim Mickel <tim.mickel@gmail.com>
Date: Mon, 20 Jun 2016 14:42:56 -0400
Subject: [PATCH] operator_not in primitive table

---
 src/blocks/scratch3_operators.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/blocks/scratch3_operators.js b/src/blocks/scratch3_operators.js
index 03fe3e352..55b3b1129 100644
--- a/src/blocks/scratch3_operators.js
+++ b/src/blocks/scratch3_operators.js
@@ -23,6 +23,7 @@ Scratch3OperatorsBlocks.prototype.getPrimitives = function() {
         'operator_gt': this.gt,
         'operator_and': this.and,
         'operator_or': this.or,
+        'operator_not': this.not,
         'operator_random': this.random
     };
 };