a bug with condition block
-
-
Well, on the left side of the condition the minute number is turned into a string, so you have a string at the end. Comparing string with a numeric value (integer, double...) normally works, but it's obviously not the right thing to do.
Try this:
Print("10" < 5);It returns true. I guess that some conversion happens for the string, because any number below 10 works, but when the string ends with 0 that 0 is probably considered as nothing and removed.
-
ok. make sense.
thanks