Re-ordered colormap indexes to match in-game

Changed greys to index 1,2 and removed gold and brown
This commit is contained in:
Collin Smith 2019-02-10 02:15:41 -08:00
parent c5efbc13a1
commit b136b54b93

View File

@ -25,10 +25,10 @@ public class Colormaps implements Disposable {
public Index get(int index) {
switch (index) {
case 1: return brown;
case 2: return gold;
case 3: return grey;
case 4: return grey2;
case 1: return grey;
case 2: return grey2;
case 3: return null;//brown;
case 4: return null;//gold;
case 5: return greybrown;
case 6: return invgrey;
case 7: return invgrey2;