Page 1 of 1

[0.4.4-d1]

PostPosted: Thu Jan 24, 2013 07:01
by Alienhunter3010
Hi to all,
I'm going to prepare - and to make stable - a 0.4.4-d1 server on a Raspberry Pi (ARM).

Everything was good until I found that wool do not render well on Inventory!

http://ubuntuone.com/4pWi5Ut2xzXD9lK9TenXNd

As you can see wool is well rendered in-world, but is broken on inventory.

I'm using this mods:

3dforniture
bucket
craft_guide
creative
default
doors
dye
farming
fire
give_initial_stuff
homedecor
legacy
moreblocks
moreores
sethome
stairs
stairsplus
vessels
wool
woolcraft
xpanes

And I'm using 0.4.4-d1 both on server and on client.

I also experience problems trying to craft glowglass and superglowglass: torch + glass craft nothing!

Does someone experience the same problem? There is a solution?

Thank you all, Alex.

PostPosted: Thu Jan 24, 2013 09:17
by Topywo
Alienhunter3010 wrote:I also experience problems trying to craft glowglass and superglowglass: torch + glass craft nothing!

Does someone experience the same problem? There is a solution?

Thank you all, Alex.


Yes:

remove the lines (of moreblocks) with shapeless in it.

or change them

http://forum.minetest.net/viewtopic.php?pid=50727#p50727

or change the description in the recipes

http://forum.minetest.net/viewtopic.php?pid=47564#p47564

I don't know the problem/solution of the wool not rendering well.

PostPosted: Thu Jan 24, 2013 09:37
by 4aiman
Make sure you're using textures of the same resolution.
Disable texture atlas.

PostPosted: Thu Jan 24, 2013 21:39
by Alienhunter3010
I put offline stairsplus module and now wool works again.

SOLVED: Glowglass and superglowglass works after I patch moreblocks module adding default: prefix on the recipe code on init.lua file:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_craft({
        output = "moreblocks:glowglass 1",
        type = "shapeless",
        recipe = {"default:torch", "default:glass"},
-- here -----------^^^^^^^^
})

minetest.register_craft({
        output = "moreblocks:superglowglass 1",
        type = "shapeless",
        recipe = {"default:torch", "default:torch", "default:glass"},
-- and here -------^^^^^^^^---------^^^^^^^^
})

PostPosted: Thu Jan 24, 2013 22:20
by BrandonReese
Alienhunter3010 wrote:I put offline stairsplus module and now wool works again.

SOLVED: Glowglass and superglowglass works after I patch moreblocks module adding default: prefix on the recipe code on init.lua file:

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_craft({
        output = "moreblocks:glowglass 1",
        type = "shapeless",
        recipe = {"default:torch", "default:glass"},
-- here -----------^^^^^^^^
})

minetest.register_craft({
        output = "moreblocks:superglowglass 1",
        type = "shapeless",
        recipe = {"default:torch", "default:torch", "default:glass"},
-- and here -------^^^^^^^^---------^^^^^^^^
})


I have had to add default: to a lot of recipes in moreblocks. Is moreblocks still being maintained? That really needs to be fixed.