6 posts
Posted 27 July 2013 - 07:23 PM
A Picture attached to explane all.
[attachment=1270:2013-07-28_01.21.19.png]
1604 posts
Posted 27 July 2013 - 07:48 PM
Not a bug. It should be:
if not (1 > 2) then print("test") end
You were comparing the result of "not 1" (wich will always be false) with the number 2.
6 posts
Posted 27 July 2013 - 10:04 PM
ok thanks
7508 posts
Location
Australia
Posted 27 July 2013 - 11:52 PM
alternatively just do
if 1 <= 2 then
print("test")
end
also as it currently stands there are no real bugs within the Lua language, it's almost always misuse or user error, so these types of bug reports are better off in Ask a Pro, not in the Bug report section for the mod.
8543 posts
Posted 28 July 2013 - 12:14 AM
Moved to Ask a Pro.