mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 14:53:16 -04:00
Update init.lua
This commit is contained in:
parent
0142c2e77a
commit
c3ae97dc11
1 changed files with 1 additions and 2 deletions
|
@ -35,7 +35,6 @@ local function flood_flame(pos, _, newnode)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Flame nodes
|
-- Flame nodes
|
||||||
|
|
||||||
local fire_node = {
|
local fire_node = {
|
||||||
drawtype = "firelike",
|
drawtype = "firelike",
|
||||||
tiles = {{
|
tiles = {{
|
||||||
|
@ -80,7 +79,7 @@ minetest.register_node("fire:basic_flame", flame_fire_node)
|
||||||
|
|
||||||
-- Permanent flame node
|
-- Permanent flame node
|
||||||
local permanent_fire_node = table.copy(fire_node)
|
local permanent_fire_node = table.copy(fire_node)
|
||||||
permanent_fire_node.description = S("Permanent Flame")
|
permanent_fire_node.description = S("Permanent Fire")
|
||||||
|
|
||||||
minetest.register_node("fire:permanent_flame", permanent_fire_node)
|
minetest.register_node("fire:permanent_flame", permanent_fire_node)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue