Skip to content

Commit 4d67f83

Browse files
authored
xor & xnor in expandable bool
1 parent 7be2a97 commit 4d67f83

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

blocks_vertical/live_tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Blockly.Blocks['operator_expandableBool'] = {
3636
menuGenerator: function () {
3737
const dropdown = new Blockly.FieldDropdown(function () {
3838
return [
39-
["and", "a"], ["or", "o"],
40-
["nand", "n"], ["nor", "N"]
39+
["and", "a"], ["or", "o"], ["xor", "x"],
40+
["nand", "n"], ["nor", "N"], ["xnor", "X"]
4141
];
4242
});
4343
const ogSetValue = dropdown.setValue;

0 commit comments

Comments
 (0)