From 75331e42970778bdc8b95306b082166307102195 Mon Sep 17 00:00:00 2001 From: Sam El-Husseini Date: Tue, 28 Feb 2017 18:12:46 -0800 Subject: [PATCH] Remove random boolean color --- libs/core/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/helpers.ts b/libs/core/helpers.ts index a5276a9a..811b792a 100644 --- a/libs/core/helpers.ts +++ b/libs/core/helpers.ts @@ -10,7 +10,7 @@ namespace Math { * Generates a `true` or `false` value randomly, just like flipping a coin. */ //% blockId=logic_random block="pick random true or false" - //% help=math/random-boolean color=230 + //% help=math/random-boolean export function randomBoolean(): boolean { return Math.random(2) == 0; }