cactus/papyrus growing time decreased

master
Ilya Zhuravlev 2011-11-09 17:58:13 +04:00
parent 6651f39dbe
commit b5436fc284
1 changed files with 3 additions and 3 deletions

View File

@ -1139,7 +1139,7 @@ void ServerEnvironment::step(float dtime)
*/ */
if(n.getContent() == CONTENT_CACTUS) if(n.getContent() == CONTENT_CACTUS)
{ {
if(myrand()%50 == 0) if(myrand()%40 == 0)
{ {
int grow_size = 0; int grow_size = 0;
v3s16 first_cactii_block; 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(n.getContent() == CONTENT_PAPYRUS)
{ {
if(myrand()%50 == 0) if(myrand()%35 == 0)
{ {
int grow_size = 0; int grow_size = 0;
v3s16 first_papyrus_block; v3s16 first_papyrus_block;