Fix bad crafting recipe for fan, when no technic and basic_materials mod is used.

master
SFENCE 2021-11-07 16:07:09 +01:00
parent 937df005c6
commit 0223907f9e
1 changed files with 3 additions and 3 deletions

View File

@ -194,9 +194,9 @@ minetest.register_craftitem("laptop:fan", {
minetest.register_craft({
output = 'laptop:fan',
recipe = {
{rc.plastic, rc.steel, rc.plastic},
{rc.steel, rc.motor, rc.steel},
{rc.plastic, rc.steel, rc.plastic},
{'', rc.plastic, ''},
{rc.plastic, rc.motor, rc.plastic},
{'', rc.plastic, ''},
}
})