diff options
author | Kevin Chabowski <kevin@kch42.de> | 2013-10-22 23:59:19 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2013-10-22 23:59:19 +0200 |
commit | a5ef7072a65c3b634dc72c5aa3904e9e9eb7f457 (patch) | |
tree | 8a87539880615d2123cbe9629a50e7816e47891d /mcmap | |
parent | b2f3050fe6ca736daf7cff0e25d5d2b4d7f3bc62 (diff) | |
download | gomcmap-a5ef7072a65c3b634dc72c5aa3904e9e9eb7f457.tar.gz gomcmap-a5ef7072a65c3b634dc72c5aa3904e9e9eb7f457.tar.bz2 gomcmap-a5ef7072a65c3b634dc72c5aa3904e9e9eb7f457.zip |
New wooden block IDs from latest snapshot.
Diffstat (limited to 'mcmap')
-rw-r--r-- | mcmap/block.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mcmap/block.go b/mcmap/block.go index a7cf9ae..cfd4eee 100644 --- a/mcmap/block.go +++ b/mcmap/block.go @@ -197,6 +197,9 @@ const ( BlkDropper = 158 BlkStainedClay = 159 BlkStainedGlassPane = 160 + BlkWood2 = 162 + BlkAcaciaWoodStairs = 163 + BlkDarkOakWoodStairs = 164 BlkHayBlock = 170 BlkCarpet = 171 BlkHardenedClay = 172 @@ -377,6 +380,9 @@ var blockNames = map[BlockID]string{ BlkPackedIce: "Packed Ice", BlkLargeFlower: "Large Flower", BlkStainedGlassPane: "Stained Glass Pane", + BlkWood2: "Wood 2", + BlkAcaciaWoodStairs: "Acacia Wood Stairs", + BlkDarkOakWoodStairs: "Dark Oak Wood Stairs", } func (b BlockID) String() string { |