There is a big mistake in number filter. Why? Beacuse the number filter only watches only on first numbers instead of looking on full number. For example we have numbers: 1,11,2,300,45,800,9 and we want to sort them from lowest to highest.
Filter in game:
1
11
2
300
45
800
9
How it should be:
1
2
9
11
45
300
800
Now You see the problem.
Filter in game:
1
11
2
300
45
800
9
How it should be:
1
2
9
11
45
300
800
Now You see the problem.