From 8648130b4b7457b5e05489493778d7f7ffd2f713 Mon Sep 17 00:00:00 2001 From: Brendan Robert Date: Sun, 6 Jul 2014 16:59:07 -0500 Subject: [PATCH] Corrected GetBoolean return value so it can be used with logic statements --- .../resources/mythos/mythos-editor/js/mythos_uncompressed.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OutlawEditor/src/main/resources/mythos/mythos-editor/js/mythos_uncompressed.js b/OutlawEditor/src/main/resources/mythos/mythos-editor/js/mythos_uncompressed.js index a54ffbe6..a5cfe7ef 100644 --- a/OutlawEditor/src/main/resources/mythos/mythos-editor/js/mythos_uncompressed.js +++ b/OutlawEditor/src/main/resources/mythos/mythos-editor/js/mythos_uncompressed.js @@ -233,7 +233,7 @@ if (typeof Mythos === "undefined") { this.setColour(54); this.appendDummyInput() .appendField("Get Yes or No"); - this.setOutput(true, "boolean"); + this.setOutput(true, "Boolean"); this.setTooltip(''); } };