From bda5e62788ab8aee3496c4f1c73c0146ff9f6c21 Mon Sep 17 00:00:00 2001 From: Shoghi Cervantes Date: Mon, 10 Jun 2013 17:13:34 +0200 Subject: [PATCH] Fixed syntax --- src/world/generator/populator/PondPopulator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/generator/populator/PondPopulator.php b/src/world/generator/populator/PondPopulator.php index 9f99bcaee..d2396bd57 100644 --- a/src/world/generator/populator/PondPopulator.php +++ b/src/world/generator/populator/PondPopulator.php @@ -34,7 +34,7 @@ class PondPopulator extends Populator{ $v = new Vector3( $random->nextRange($chunkX << 4, ($chunkX << 4) + 16), $random->nextRange(0, 128), - $random->nextRange($chunkZ << 4, ($chunkZ << 4) + 16), + $random->nextRange($chunkZ << 4, ($chunkZ << 4) + 16) ); $pond = new PondObject($random, new WaterBlock()); if($pond->canPlaceObject($level, $v)){