From b5436fc284589b662ee716d474519e7aec35b979 Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Wed, 9 Nov 2011 17:58:13 +0400 Subject: [PATCH] cactus/papyrus growing time decreased --- src/environment.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/environment.cpp b/src/environment.cpp index 1f9a45f..d1c6691 100644 --- a/src/environment.cpp +++ b/src/environment.cpp @@ -1139,7 +1139,7 @@ void ServerEnvironment::step(float dtime) */ if(n.getContent() == CONTENT_CACTUS) { - if(myrand()%50 == 0) + if(myrand()%40 == 0) { int grow_size = 0; v3s16 first_cactii_block; @@ -1163,11 +1163,11 @@ void ServerEnvironment::step(float dtime) } } /* - Let Cactii grow + Let papyrus grow */ if(n.getContent() == CONTENT_PAPYRUS) { - if(myrand()%50 == 0) + if(myrand()%35 == 0) { int grow_size = 0; v3s16 first_papyrus_block;