horibu
05-12-2017, 07:55 PM
So it was starting to get to me that the right-click "view map" listing of maps within NAROST were sorted by uppercase before lowercase. Example, imt-Reim was listed at the top of the imt maps. I was able to truely ignore case and allow all maps to be sorted by just modifying one line of code. Not sure if Tillmen wishes to push an update out or not, but if you wish to do it yourself edit the following.
NAROST.LIC line 93
BEFORE:
used_maps.sort!
AFTER:
used_maps.sort_by!(&:downcase)
NAROST.LIC line 93
BEFORE:
used_maps.sort!
AFTER:
used_maps.sort_by!(&:downcase)