Page 1 of 1
No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 12:21
by Big-Ghost
Please, don't change any line of code in the mods and upload a wrong version to github!
Example:
https://github.com/minetest/minetest_ga ... f13b3b1ac7There must be something wrong? Or not?
Crafting 9 x "default:stone" to one "default:stone_block" and not to "default:stone_block 9"
desert_stone, obsidian and so on are wrong.
Take better care of it. Please!
Re: No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 12:57
by rubenwardy
I don't understand what you mean: 9 stone does make 9 stone_block
Re: No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 13:04
by KCoombes
I think the issue is the non-conforming of the recipes - AFAIK, 9 ingots makes 1 block, so logically 9 stone would make 1 stone_block, not 9 stone_block (which is what the existing recipes yield in this mod)
Re: No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 15:45
by Big-Ghost
KCoombes wrote:I think the issue is the non-conforming of the recipes - AFAIK, 9 ingots makes 1 block, so logically 9 stone would make 1 stone_block, not 9 stone_block (which is what the existing recipes yield in this mod)
That's exactly what I mean. Thank you.
Re: No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 19:45
by Byakuren
Conceptually, ingots are small, while nodes (like stone) are large. So while it may take 9 ingots to make up one full node of material, 9 nodes should make up 9 nodes of material. I don't think there is any real inconsistency if you account for what the items are supposed to represent, and that in the case of 9 ingots -> 1 block, you are unable to place the ingots as nodes themselves.
Re: No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 20:04
by Napiophelios
right now the crafting recipe is just a conversion from 9 natural rough stone to 9 crafted polished stone;
it makes sense there would/should be some cost or loss of material for a more refined product.
If not then why use a number at all?
why would I need to collect 9 before I can make the conversion?
Re: No changes without prior inspection if it still works.

Posted:
Sun Aug 07, 2016 20:27
by Byakuren
Napiophelios wrote:why would I need to collect 9 before I can make the conversion?
I can only think of the practical reason that you need more than one item to have a crafting recipe that isn't just a single item. You could make a recipe with just one item, but then you will collide when you try to make "sensible" recipes for other forms of worked stone.
Re: No changes without prior inspection if it still works.

Posted:
Mon Aug 08, 2016 06:14
by Big-Ghost
I think we need more of a definition, what is a block and what is a compressed block. In my opinion it would be better to say. A block is something that consists of 9 identical items. No matter what size they have.
To save storage space, this would be a definition of block for me. Compression would be a misnomer for it. Wool as an example. We should not consider the real conditions of the material. Otherwise we would have to do with other things in Minetest to corresponds to reality and that would be a lot of work.
Just a suggestion.