Local variables not working with statement blocks

Issue #13 resolved
mezzodrinker created an issue
local $foo = "foo";

if(true) then
  $foo = "bar";
end

Print($foo);

This code will always print foo to Minecraft's console output - it should output bar instead.

Comments (2)

  1. Log in to comment