From 9d4cd8a6ca388858f18e7bf8367fc8b2af818d45 Mon Sep 17 00:00:00 2001 From: JezuzLizard Date: Sat, 23 Jan 2021 00:40:36 -0800 Subject: [PATCH] Documented new compiler bug. --- compiler limitations.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/compiler limitations.md b/compiler limitations.md index dd74345..f399d3d 100644 --- a/compiler limitations.md +++ b/compiler limitations.md @@ -62,3 +62,9 @@ level waittill( var, player ); WILL COMPILE BUT ``` The notify/waittill won't work. + +**9. You cannot explicitly define a variable as a boolean** +``` +level.boolean = true; +``` +This will compile ok but it will cause instability and crash erratically. \ No newline at end of file