mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-02 16:49:37 +01:00
fix setPaletteEntry
This commit is contained in:
parent
fd1932cfd8
commit
c8a19a1d83
@ -92,8 +92,18 @@ public class ChunkSection {
|
|||||||
|
|
||||||
public void setPaletteEntry(int index, int id) {
|
public void setPaletteEntry(int index, int id) {
|
||||||
if (index < 0 || index >= palette.size()) throw new IndexOutOfBoundsException();
|
if (index < 0 || index >= palette.size()) throw new IndexOutOfBoundsException();
|
||||||
palette.set(index, id);
|
int oldId = palette.set(index, id);
|
||||||
|
if (oldId == id) return;
|
||||||
inversePalette.put(id, index);
|
inversePalette.put(id, index);
|
||||||
|
if (inversePalette.get(oldId) == index) {
|
||||||
|
inversePalette.remove(oldId);
|
||||||
|
for (int i = 0; i < palette.size(); i++) {
|
||||||
|
if (palette.get(i) == oldId) {
|
||||||
|
inversePalette.put(oldId, i);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void replacePaletteEntry(int oldId, int newId) {
|
public void replacePaletteEntry(int oldId, int newId) {
|
||||||
|
Loading…
Reference in New Issue
Block a user