forked from mirrors/NBTExplorer
Bugfix in color index calculation in mapconverter
This commit is contained in:
parent
0a99a45290
commit
037673fd02
1 changed files with 13 additions and 13 deletions
|
@ -12,19 +12,19 @@ namespace Substrate.Data
|
||||||
public enum ColorGroup
|
public enum ColorGroup
|
||||||
{
|
{
|
||||||
Unexplored = 0,
|
Unexplored = 0,
|
||||||
Grass = 4,
|
Grass = 1,
|
||||||
Sand = 8,
|
Sand = 2,
|
||||||
Other = 12,
|
Other = 3,
|
||||||
Lava = 16,
|
Lava = 4,
|
||||||
Ice = 20,
|
Ice = 5,
|
||||||
Iron = 24,
|
Iron = 6,
|
||||||
Leaves = 28,
|
Leaves = 7,
|
||||||
Snow = 32,
|
Snow = 8,
|
||||||
Clay = 36,
|
Clay = 9,
|
||||||
Dirt = 40,
|
Dirt = 10,
|
||||||
Stone = 44,
|
Stone = 11,
|
||||||
Water = 48,
|
Water = 12,
|
||||||
Wood = 52,
|
Wood = 13,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in a new issue