Stevertus / mcscript

A programming language for Minecraft Vanilla
https://mcscript.stevertus.com
MIT License
236 stars 17 forks source link

Cannot declare bool without setting it #42

Open firecraftgaming opened 3 years ago

firecraftgaming commented 3 years ago

I want to declare a bool (tag) as this bool <name> <entity> so I can use it like if (<name> <entity>) but currently I need to assignt the bool to define it like this bool <name> <entity> = <false | true> which doesnt work for me as it is set by other functions