diff options
| author | Kevin Chabowski <kevin@kch42.de> | 2013-10-10 21:34:32 +0200 | 
|---|---|---|
| committer | Kevin Chabowski <kevin@kch42.de> | 2013-10-10 21:34:32 +0200 | 
| commit | b2f3050fe6ca736daf7cff0e25d5d2b4d7f3bc62 (patch) | |
| tree | acd23fed6245d83de996e26ae8946a04a8114440 | |
| parent | b94000e63e9d8753249754f91027d315bdbe5ebe (diff) | |
| download | gomcmap-b2f3050fe6ca736daf7cff0e25d5d2b4d7f3bc62.tar.gz gomcmap-b2f3050fe6ca736daf7cff0e25d5d2b4d7f3bc62.tar.bz2 gomcmap-b2f3050fe6ca736daf7cff0e25d5d2b4d7f3bc62.zip | |
New Blocks from Snapshot 13w41a
| -rw-r--r-- | mcmap/block.go | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/mcmap/block.go b/mcmap/block.go index 87bea3a..a7cf9ae 100644 --- a/mcmap/block.go +++ b/mcmap/block.go @@ -130,6 +130,7 @@ const (  	BlkCakeBlock                  = 92  	BlkRedstoneRepeaterInactive   = 93  	BlkRedstoneRepeaterActive     = 94 +	BlkStainedGlass               = 95  	BlkLockedChest                = 95  	BlkTrapdoor                   = 96  	BlkMonsterEgg                 = 97 @@ -195,6 +196,7 @@ const (  	BlkActivatorRail              = 157  	BlkDropper                    = 158  	BlkStainedClay                = 159 +	BlkStainedGlassPane           = 160  	BlkHayBlock                   = 170  	BlkCarpet                     = 171  	BlkHardenedClay               = 172 @@ -303,7 +305,7 @@ var blockNames = map[BlockID]string{  	BlkCakeBlock:                  "Cake Block",  	BlkRedstoneRepeaterInactive:   "Redstone Repeater (inactive)",  	BlkRedstoneRepeaterActive:     "Redstone Repeater (active)", -	BlkLockedChest:                "Locked Chest", +	BlkStainedGlass:               "Stained Glass",  	BlkTrapdoor:                   "Trapdoor",  	BlkMonsterEgg:                 "Monster Egg",  	BlkStoneBricks:                "Stone Bricks", @@ -374,6 +376,7 @@ var blockNames = map[BlockID]string{  	BlkBlockOfCoal:                "Block of Coal",  	BlkPackedIce:                  "Packed Ice",  	BlkLargeFlower:                "Large Flower", +	BlkStainedGlassPane:           "Stained Glass Pane",  }  func (b BlockID) String() string { | 
