Bugs with the nether: mining ores & buggy mobs

User avatar
Lizzy
Member
 
Posts: 125
Joined: Tue Oct 07, 2014 08:36

Bugs with the nether: mining ores & buggy mobs

by Lizzy » Mon Jun 08, 2015 08:26

Hi there,

there are many bugs with the nether. Mining ores is almost impossible and the mobs are very buggy in the nether. Nothing is indicated in the debug.txt. I had the Stampy game (Morn76's subgame). I've spotted no bugs in the overworld but Minetest becomes very laggy after 90 minutes of gameplay.

It's necessary to report these bugs to improve Minetest.

Thanks in advance.
 

User avatar
rubenwardy
Member
 
Posts: 4500
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy

Re: Bugs with the nether: mining ores & buggy mobs

by rubenwardy » Mon Jun 08, 2015 10:10

Lizzy wrote:Mining ores is almost impossible


What do you mean? Does it take too long? You'll probably need to craft a more powerful pick axe.

Lizzy wrote:mobs are very buggy in the nether.


What exactly do you mean by buggy? Do they crash Minetest, or do that act weird?

Lizzy wrote:Minetest becomes very laggy after 90 minutes of gameplay.


This is problem that occurs in most in development video games. The slow down is usually from "memory leaks", where the game takes up more and more memory because it forgets to free it.

The only thing I can suggest is to just restart Minetest :(


-----------------------------------------------

For other people viewing this topic, this is the nether mod in stampy game: viewtopic.php?id=5790

The mobs are supplied by a modified version of Simple Mobs: https://github.com/mdoege/stampy_game/t ... /mods/mobs
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Bugs with the nether: mining ores & buggy mobs

by Morn76 » Mon Jun 08, 2015 10:38

The problem with my fork of PilzAdam's Nether mod is that it takes some time to first generate the "Nether cave" around the portal. Probably at least 30-60 seconds, during which time you will teleport back and forth between the Nether and Overworld a few times (which looks buggy but is not easy to prevent).

When terrain generation is finished, there is still some lag while lava flow and lighting updates. So yeah, for the first 5 minutes or so the Nether is unusably laggy.

But once lava and lighting updates are complete, the Nether is fairly usable, i.e. you can mine ores and fight mobs normally. But this takes some time, it's not like in MC where you just go the Nether and *boom* you can use it after a few seconds.

Lua mapgens are slow, that's the problem…
 

User avatar
rubenwardy
Member
 
Posts: 4500
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy

Re: Bugs with the nether: mining ores & buggy mobs

by rubenwardy » Mon Jun 08, 2015 11:14

Morn76 wrote:Lua mapgens are slow, that's the problem…


Lua mapgens aren't slow, set_node is. LVM would make it almost as fast as C++.
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Bugs with the nether: mining ores & buggy mobs

by Morn76 » Mon Jun 08, 2015 11:51

rubenwardy wrote:
Morn76 wrote:Lua mapgens are slow, that's the problem…


Lua mapgens aren't slow, set_node is. LVM would make it almost as fast as C++.

It is using the Voxel Manipulator already. And the lava fluid updates are done by the C++ engine. There is simply a lot of flowing lava there.
 

User avatar
Lizzy
Member
 
Posts: 125
Joined: Tue Oct 07, 2014 08:36

Re: Bugs with the nether: mining ores & buggy mobs

by Lizzy » Tue Jun 09, 2015 02:05

I tried mining with a diamond pickaxe but nothing. It's hard to kill mobs in the nether because of these bugs but the game don't crash. The game needs a auto free memory. Can I play with DirectX 9 and 10.1 or only with OpenGL?
 

Amaz
Member
 
Posts: 328
Joined: Wed May 08, 2013 08:26
GitHub: Amaz1
IRC: Amaz
In-game: Amaz

Re: Bugs with the nether: mining ores & buggy mobs

by Amaz » Tue Jun 09, 2015 07:32

Lizzy wrote:Can I play with DirectX 9 and 10.1 or only with OpenGL?

I believe you can play with DirectX, but I've never used it. To change it, I think you need to go to the settings tab, then open the dropdown menu under rendering, and select DirectX
 

User avatar
Lizzy
Member
 
Posts: 125
Joined: Tue Oct 07, 2014 08:36

Re: Bugs with the nether: mining ores & buggy mobs

by Lizzy » Tue Jun 09, 2015 07:53

It's without conflict with the mods?
 

Amaz
Member
 
Posts: 328
Joined: Wed May 08, 2013 08:26
GitHub: Amaz1
IRC: Amaz
In-game: Amaz

Re: Bugs with the nether: mining ores & buggy mobs

by Amaz » Tue Jun 09, 2015 07:57

Lizzy wrote:It's without conflict with the mods?

afaik, yes. You can always change it back if it's not.
 

User avatar
Lizzy
Member
 
Posts: 125
Joined: Tue Oct 07, 2014 08:36

Re: Bugs with the nether: mining ores & buggy mobs

by Lizzy » Tue Jun 09, 2015 08:04

So...the only bugs I have is with the nether. I will return to Minetest in near future.
 

User avatar
Gael de Sailly
Member
 
Posts: 475
Joined: Sun Jan 26, 2014 17:01
GitHub: Gael-de-Sailly
IRC: Gael-de-Sailly
In-game: Gael-de-Sailly

Re: Bugs with the nether: mining ores & buggy mobs

by Gael de Sailly » Mon Jun 15, 2015 07:01

Morn76 wrote:It is using the Voxel Manipulator already.

Are you sure ? I see the ores replacements here. Look at this : nether voxelmanip branch.
Very busy this year too, so do not expect me to be very active on the forum or in game. But I'm not about to drop Minetest forever :)
 

Morn76
Member
 
Posts: 640
Joined: Sun Feb 16, 2014 19:45
GitHub: mdoege

Re: Bugs with the nether: mining ores & buggy mobs

by Morn76 » Mon Jun 15, 2015 10:43

Gael de Sailly wrote:
Morn76 wrote:It is using the Voxel Manipulator already.

Are you sure ? I see the ores replacements here. Look at this : nether voxelmanip branch.

True, it still does the ore replacement thing. But creating the Nether landscape and lava lakes is done in Voxel Manip and that is probably still where most of the lag comes from I think.
 


Return to Minetest Problems

Who is online

Users browsing this forum: Google [Bot] and 19 guests

cron