Stevertus / mcscript

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

variable compile error #13

Closed susautw closed 4 years ago

susautw commented 5 years ago

Follow this code:

var constants

if(constants c1 > 0){
    /say hi
}

will compiled to

scoreboard objectives add constants dummy

execute if score c1 c1 matches 1.. run say hi

and I expected this

scoreboard objectives add constants dummy

execute if score c1 constants matches 1.. run say hi

I think this need fix.

Stevertus commented 4 years ago

fixed in v0.2.3