From b136b54b93996c486b03f9b3fbdfd514629b1284 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Sun, 10 Feb 2019 02:15:41 -0800 Subject: [PATCH] Re-ordered colormap indexes to match in-game Changed greys to index 1,2 and removed gold and brown --- core/src/gdx/diablo/Colormaps.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/gdx/diablo/Colormaps.java b/core/src/gdx/diablo/Colormaps.java index 8caa7abd..65bdc027 100644 --- a/core/src/gdx/diablo/Colormaps.java +++ b/core/src/gdx/diablo/Colormaps.java @@ -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;