From be9ec77e13e9d4484757b3a1a4550065d79298e8 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Wed, 15 Feb 2023 19:22:45 +0530 Subject: [PATCH] add missing signs back --- src/Macros.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Macros.hx b/src/Macros.hx index b958c58a..fe41c1d3 100644 --- a/src/Macros.hx +++ b/src/Macros.hx @@ -64,12 +64,16 @@ class MarbleWorldMacros { endPad = cast shape; } else if (dataBlockLowerCase == "signfinish") shape = new SignFinish(); + else if (StringTools.startsWith(dataBlockLowerCase, "signplain")) + shape = new SignPlain(cast element); else if (StringTools.startsWith(dataBlockLowerCase, "gemitem")) { shape = new Gem(cast element); this.totalGems++; this.gems.push(cast shape); } else if (dataBlockLowerCase == "superjumpitem") shape = new SuperJump(cast element); + else if (StringTools.startsWith(dataBlockLowerCase, "signcaution")) + shape = new SignCaution(cast element); else if (dataBlockLowerCase == "superbounceitem") shape = new SuperBounce(cast element); else if (dataBlockLowerCase == "roundbumper")