mirror of
https://github.com/Lokrates/Biofuel
synced 2025-10-12 03:43:07 +02:00
Update init.lua
This commit is contained in:
parent
cf630b26fc
commit
8c94c12214
9
init.lua
9
init.lua
@ -1,9 +1,10 @@
|
|||||||
--File name: init.lua
|
--File name: init.lua
|
||||||
--Project name: compost, a Mod for Minetest
|
--Project name: Biofuel, a Mod for Minetest
|
||||||
--License: General Public License, version 3 or later
|
--License: General Public License, version 3 or later
|
||||||
--Original Work Copyright (C) 2016 cd2 (cdqwertz) <cdqwertz@gmail.com>
|
--Original Work Copyright (C) 2016 cd2 (cdqwertz) <cdqwertz@gmail.com>
|
||||||
--Modified Work Copyright (C) Vitalie Ciubotaru <vitalie at ciubotaru dot tk>
|
--Modified Work Copyright (C) Vitalie Ciubotaru <vitalie at ciubotaru dot tk>
|
||||||
--Modified Work Copyright (C) 2018 Lokrates
|
--Modified Work Copyright (C) 2018 Lokrates
|
||||||
|
--Modified Work Copyright (C) BuckarooBanzay
|
||||||
|
|
||||||
-- Load support for intllib.
|
-- Load support for intllib.
|
||||||
local MP = minetest.get_modpath(minetest.get_current_modname())
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||||||
@ -19,7 +20,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
minetest.log('action', 'MOD: Biofuel ' .. S("loading..."))
|
minetest.log('action', 'MOD: Biofuel ' .. S("loading..."))
|
||||||
biofuel_version = '0.1'
|
biofuel_version = '0.3'
|
||||||
|
|
||||||
biomass = {}
|
biomass = {}
|
||||||
biomass.convertible_groups = {'flora', 'leaves', 'flower', 'sapling', 'tree', 'wood', 'stick', 'plant', }
|
biomass.convertible_groups = {'flora', 'leaves', 'flower', 'sapling', 'tree', 'wood', 'stick', 'plant', }
|
||||||
@ -298,7 +299,7 @@ minetest.register_node("biofuel:refinery", {
|
|||||||
description = S("Biofuel Refinery"),
|
description = S("Biofuel Refinery"),
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = {
|
tiles = {
|
||||||
"biofuel_tb.png", -- top
|
"biofuel_tb.png" .. tube_entry, -- top
|
||||||
"biofuel_tb.png" .. tube_entry, -- bottom
|
"biofuel_tb.png" .. tube_entry, -- bottom
|
||||||
"biofuel_fr.png", -- right
|
"biofuel_fr.png", -- right
|
||||||
"biofuel_bl.png", -- left
|
"biofuel_bl.png", -- left
|
||||||
@ -344,7 +345,7 @@ minetest.register_node("biofuel:refinery_active", {
|
|||||||
description = S("Biofuel Refinery Active"),
|
description = S("Biofuel Refinery Active"),
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
tiles = {
|
tiles = {
|
||||||
"biofuel_tb.png", -- top
|
"biofuel_tb.png" .. tube_entry, -- top
|
||||||
"biofuel_tb.png" .. tube_entry, -- bottom
|
"biofuel_tb.png" .. tube_entry, -- bottom
|
||||||
"biofuel_fr_active.png", -- right
|
"biofuel_fr_active.png", -- right
|
||||||
"biofuel_bl_active.png", -- left
|
"biofuel_bl_active.png", -- left
|
||||||
|
Loading…
Reference in New Issue
Block a user