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
|
||||
{
|
||||
Unexplored = 0,
|
||||
Grass = 4,
|
||||
Sand = 8,
|
||||
Other = 12,
|
||||
Lava = 16,
|
||||
Ice = 20,
|
||||
Iron = 24,
|
||||
Leaves = 28,
|
||||
Snow = 32,
|
||||
Clay = 36,
|
||||
Dirt = 40,
|
||||
Stone = 44,
|
||||
Water = 48,
|
||||
Wood = 52,
|
||||
Grass = 1,
|
||||
Sand = 2,
|
||||
Other = 3,
|
||||
Lava = 4,
|
||||
Ice = 5,
|
||||
Iron = 6,
|
||||
Leaves = 7,
|
||||
Snow = 8,
|
||||
Clay = 9,
|
||||
Dirt = 10,
|
||||
Stone = 11,
|
||||
Water = 12,
|
||||
Wood = 13,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue