diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-09-16 22:43:49 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-09-16 22:43:49 +0200 |
commit | a2c146329536d1813e66372dc5bf71c754440ccf (patch) | |
tree | 8ddca80f33df44b63fd5cf5206b4d0f3c6eec532 /mcmap | |
parent | c29a154e5aeeb1240962b330fc2c8a8651cedd75 (diff) | |
download | gomcmap-a2c146329536d1813e66372dc5bf71c754440ccf.tar.gz gomcmap-a2c146329536d1813e66372dc5bf71c754440ccf.tar.bz2 gomcmap-a2c146329536d1813e66372dc5bf71c754440ccf.zip |
New blocks introduced in the recent snapshots
Diffstat (limited to 'mcmap')
-rw-r--r-- | mcmap/block.go | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/mcmap/block.go b/mcmap/block.go index 449e25f..87bea3a 100644 --- a/mcmap/block.go +++ b/mcmap/block.go @@ -73,7 +73,7 @@ const ( BlkWool = 35 BlkBlockMovedByPiston = 36 BlkDandelion = 37 - BlkRose = 38 + BlkFlower = 38 BlkBrownMushroom = 39 BlkRedMushroom = 40 BlkBlockOfGold = 41 @@ -199,6 +199,12 @@ const ( BlkCarpet = 171 BlkHardenedClay = 172 BlkBlockOfCoal = 173 + BlkPackedIce = 174 + BlkLargeFlower = 175 + + // Aliases + BlkRose = BlkFlower + BlkPoppy = BlkFlower ) var blockNames = map[BlockID]string{ @@ -240,7 +246,7 @@ var blockNames = map[BlockID]string{ BlkWool: "Wool", BlkBlockMovedByPiston: "Block moved by Piston", BlkDandelion: "Dandelion", - BlkRose: "Rose", + BlkFlower: "Flower", BlkBrownMushroom: "Brown Mushroom", BlkRedMushroom: "Red Mushroom", BlkBlockOfGold: "Block of Gold", @@ -366,6 +372,8 @@ var blockNames = map[BlockID]string{ BlkCarpet: "Carpet", BlkHardenedClay: "Hardened Clay", BlkBlockOfCoal: "Block of Coal", + BlkPackedIce: "Packed Ice", + BlkLargeFlower: "Large Flower", } func (b BlockID) String() string { |