From 9105e59f2ab3efdc03af60201c22ade1f09bf417 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Sun, 24 Nov 2013 15:12:14 +0100 Subject: [PATCH] Jungle Sapling --- src/material/block/plant/Sapling.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/material/block/plant/Sapling.php b/src/material/block/plant/Sapling.php index 61a96c061..21eaadbeb 100644 --- a/src/material/block/plant/Sapling.php +++ b/src/material/block/plant/Sapling.php @@ -23,6 +23,7 @@ class SaplingBlock extends FlowableBlock{ const OAK = 0; const SPRUCE = 1; const BIRCH = 2; + const JUNGLE = 3; const BURN_TIME = 5; public function __construct($meta = Sapling::OAK){ @@ -32,6 +33,7 @@ class SaplingBlock extends FlowableBlock{ 0 => "Oak Sapling", 1 => "Spruce Sapling", 2 => "Birch Sapling", + 3 => "Jungle Sapling", ); $this->name = $names[$this->meta & 0x03]; $this->hardness = 0;