Half trees

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

Half trees

by cosarara97 » Wed Mar 21, 2012 17:23

Today I generated a new world with 0.4dev-20120320, and found a lot of half-generated trees (they have no leaves).
A screenshot I made (I didn't remove the leaves, they weren't there in the first place):
Image
:D
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Wed Mar 21, 2012 17:23

Thats a bug since 0.3.1
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

cosarara97
Member
 
Posts: 180
Joined: Tue Nov 01, 2011 18:53

by cosarara97 » Wed Mar 21, 2012 17:29

Well, It had never happened to me : /
:D
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Wed Mar 21, 2012 17:30

I've seen this bug too. It seems like Herobrine plays Minetest too. D:

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
Death Dealer
Member
 
Posts: 1379
Joined: Wed Feb 15, 2012 18:46

by Death Dealer » Wed Mar 21, 2012 17:50

sfan5 wrote:i'm working on an Singleplayer Sound Mod.

this will be a built in feature soon.
Keep calm and code python^_^
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Wed Mar 21, 2012 17:51

Death Dealer wrote:
sfan5 wrote:i'm working on an Singleplayer Sound Mod.

this will be a built in feature soon.

How do you know?!

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
sfan5
Member
 
Posts: 3636
Joined: Wed Aug 24, 2011 09:44
GitHub: sfan5
IRC: sfan5

by sfan5 » Wed Mar 21, 2012 17:53

Jordach wrote:
Death Dealer wrote:
sfan5 wrote:i'm working on an Singleplayer Sound Mod.

this will be a built in feature soon.

How do you know?!

He looked at github
Mods: Mesecons | WorldEdit | Nuke
Minetest builds for Windows (32-bit & 64-bit)
 

randomproof
Member
 
Posts: 214
Joined: Thu Nov 17, 2011 06:31

by randomproof » Wed Mar 21, 2012 22:23

I think the problem is that the block with the ground is generated before the block of air above is generated. Therefore when the tree is added to the ground there is no memory allocated to put the top of the tree. So to prevent this from happening you would need to make sure that the block above is generated first, before adding trees. Or maybe you could save information about the tree-related nodes to be added to the above node when it is finally generated. Or give blocks with a higher y-coord are given a higher priority in the generation queue.
 

User avatar
Calinou
Member
 
Posts: 3124
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou

by Calinou » Thu Mar 22, 2012 19:50

Never happened to me, sorry. :/
Tested locally + multiplayer.
 

User avatar
Jordach
Member
 
Posts: 4412
Joined: Mon Oct 03, 2011 17:58
GitHub: Jordach
IRC: Jordach
In-game: Jordach

by Jordach » Thu Mar 22, 2012 19:58

I've seen the old bugger before, it juust happens though.

( ͡° ͜ʖ ͡°) ( ͡o ͜ʖ ͡o) [$ ( ͡° ͜ʖ ͡°) $] ( ͡$ ͜ʖ ͡$) ヽ༼ຈل͜ຈ༽ノ



My image and media server is back online and is functioning as normal.
 

User avatar
sdzen
Member
 
Posts: 1170
Joined: Fri Aug 05, 2011 22:33

by sdzen » Thu Mar 22, 2012 19:59

lucky lucky calinou :)
[h]Zen S.D.[/h] The next generation of tranquility!
malheureusement mon français n'est pas bon :<
Owner of the Zelo's
In game name: MuadTralk, spdtainted, sdzen, sd zen, sdzeno
 

User avatar
Calinou
Member
 
Posts: 3124
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou

by Calinou » Thu Mar 22, 2012 22:12

Last time I've seen this bug was when I joined Minetest (July 6th 2011, so it's pretty old = 0.2_20110704). 0.2_20110731 fixed it, apparently.
 

kahrl
Member
 
Posts: 236
Joined: Fri Sep 02, 2011 07:51

by kahrl » Fri Mar 23, 2012 00:42

No, it exists in all versions between then and now, and probably even all the way back to when trees were first added.
randomproof's answer about why it happens is pretty accurate.
 

User avatar
bgsmithjr
Member
 
Posts: 436
Joined: Thu Mar 08, 2012 23:21

by bgsmithjr » Fri Mar 23, 2012 04:10

I have one of those, I just thought I didn't finish chopping it down.
 

User avatar
Calinou
Member
 
Posts: 3124
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou

by Calinou » Fri Mar 23, 2012 14:56

randomproof wrote:I think the problem is that the block with the ground is generated before the block of air above is generated. Therefore when the tree is added to the ground there is no memory allocated to put the top of the tree. So to prevent this from happening you would need to make sure that the block above is generated first, before adding trees. Or maybe you could save information about the tree-related nodes to be added to the above node when it is finally generated. Or give blocks with a higher y-coord are given a higher priority in the generation queue.


Okay, now go tell celeron55/make a patch. 8)
 


Return to Minetest Problems

Who is online

Users browsing this forum: No registered users and 16 guests

cron