Skip to content

Commit 36b2bcb

Browse files
authoredApr 11, 2020
Add Basic Fire Description (#2568)
1 parent 695f98f commit 36b2bcb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
 

‎mods/fire/init.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ local fire_node = {
6161

6262
-- Basic flame node
6363
local flame_fire_node = table.copy(fire_node)
64+
flame_fire_node.description = S("Fire")
6465
flame_fire_node.groups.not_in_creative_inventory = 1
6566
flame_fire_node.on_timer = function(pos)
6667
if not minetest.find_node_near(pos, 1, {"group:flammable"}) then
@@ -78,7 +79,7 @@ minetest.register_node("fire:basic_flame", flame_fire_node)
7879

7980
-- Permanent flame node
8081
local permanent_fire_node = table.copy(fire_node)
81-
permanent_fire_node.description = S("Permanent Flame")
82+
permanent_fire_node.description = S("Permanent Fire")
8283

8384
minetest.register_node("fire:permanent_flame", permanent_fire_node)
8485

‎mods/fire/locale/fire.zh_CN.tr

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# textdomain: fire
2-
Permanent Flame=永久火焰
2+
Permanent Fire=永久火焰
33
Flint and Steel=火石和钢
4+
Fire=火焰

‎mods/fire/locale/fire.zh_TW.tr

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# textdomain: fire
2-
Permanent Flame=永久火焰
2+
Permanent Fire=永久火焰
33
Flint and Steel=火石和鋼
4+
Fire=火焰

0 commit comments

Comments
 (0)
Please sign in to comment.