Compare commits

...

5 Commits

Author SHA1 Message Date
Yzel Junior cd458d1629 Delete .editorconfig 2017-01-11 00:59:31 -03:00
Yzel Junior 030bb893e2 Create .editorconfig 2017-01-11 00:58:19 -03:00
Yzel Junior 70f7713938 update README 2017-01-05 17:40:02 -03:00
Yzel Junior d1621921d6 fixed wrong growth time,again 2017-01-05 15:23:58 -03:00
Yzel Junior 71108d62cc update LICENSE 2017-01-05 15:15:44 -03:00
4 changed files with 13 additions and 12 deletions

7
LICENSE.md Normal file
View File

@ -0,0 +1,7 @@
This software is licensed uder the following licences:
Textures:[CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/legalcode)
changes were made on all default tree textures, to fit better with small trees.
Code:[WTFPL](http://www.wtfpl.net/txt/copying/)

View File

@ -1,6 +0,0 @@
This software is licensed uder the following licences:
Textures:CC BY-SA 3.0
https://creativecommons.org/licenses/by-sa/3.0/legalcode
Code: WTFPL
http://www.wtfpl.net/txt/copying/

View File

@ -5,5 +5,5 @@ This mod aims to make the growth of minetest trees a litte more harder and reali
- there are 3 stages between the sapling and the full tree
- the growing time differs on each tree
- small trees can be harvested but gives less wood than a full tree
- they growth can start only with sunlight
- the growth can start only with sunlight

View File

@ -1,11 +1,11 @@
-- Defines the base time of growth in seconds
growth_time = {
["apple"] = 1,--450,
["pine"] = 1, --330,
["aspen"] = 1,--330,
["acacia"] = 1,--510,
["jungle"] = 1--570
["apple"] = 450,
["pine"] = 330,
["aspen"] = 330,
["acacia"] = 510,
["jungle"] = 570
}