Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
farming
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
farming
Compare revisions
cf46b630ae74228e7020263c658d0c0d6a738223 to 7f3a4700e56a775175b00ec4cf8bb92d43389740
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
Illuna-Minetest/farming
Select target project
No results found
7f3a4700e56a775175b00ec4cf8bb92d43389740
Select Git revision
Branches
master
Swap
Target
Illuna-Minetest/farming
Select target project
Illuna-Minetest/farming
1 result
cf46b630ae74228e7020263c658d0c0d6a738223
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
make default trees decay again
· 7f3a4700
Milan
authored
7 years ago
7f3a4700
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
banana.lua
+7
-1
7 additions, 1 deletion
banana.lua
with
7 additions
and
1 deletion
banana.lua
View file @
7f3a4700
...
...
@@ -69,8 +69,14 @@ minetest.register_node("farming:banana", {
on_use
=
minetest
.
item_eat
(
6
),
})
-- to note is default:leaves here as this
-- leafdecay registration conflicts with
-- default trees because we have the
-- default:tree in here - this makes
-- the regular trees not decay anymore.
default
.
register_leafdecay
({
trunks
=
{
"default:tree"
},
leaves
=
{
"farming:banana_leaves"
},
leaves
=
{
"farming:banana_leaves"
,
"default:leaves"
},
radius
=
3
})
This diff is collapsed.
Click to expand it.