diff options
author | Wuzzy <almikes@aol.com> | 2016-12-23 12:51:00 +0100 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-12-23 12:51:00 +0100 |
commit | 40cca71bd9f948c6ffc20f23c591ca788038c1e5 (patch) | |
tree | 8cb6778a12affad0d4e4297956e61e3db1b9c14e | |
parent | b98da8c6a062b17b37a1aba699b68533b7a8c404 (diff) |
Fix enable_fire-related texts
-rw-r--r-- | helptexts.lua | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/helptexts.lua b/helptexts.lua index 50f2350..a6d8b1a 100644 --- a/helptexts.lua +++ b/helptexts.lua @@ -13,10 +13,12 @@ else end local basicflametext -if minetest.setting_getbool("disable_fire") == true then - basicflametext = S("The basic flame is a damaging but short-lived kind of block. This particular world is rather hostile to fire, so basic flames won't spread and destroy other blocks. They will quickly disappear. A basic flame will also be extinguished by water and other blocks when it is next to it. A single basic flame block can be destroyed safely by punching it, but it is hurtful if you stand directly in it.") +if minetest.setting_getbool("enable_fire") == false then + basicflametext = S("The basic flame is a damaging but short-lived kind of block. This particular world is rather hostile to fire, so basic flames won't spread and destroy other blocks. They will quickly disappear. A basic flame is also destroyed by nearby water or punching. It hurts you when you stand directly inside a basic flame, but punching it is safe.") + permaflametext = S("The permanent flame is a damaging block. Other than the basic flame, the permanent flame will not go away by time alone. A permanent flame is extinguished by punching it, by nearby water or similar blocks, or by removing a coal block below it. Punching is is safe, but it hurts if you stand inside. As this world is hostile to fire, it won't spread.") else basicflametext = S("The basic flame is a damaging and destructive but short-lived kind of block. It will destroy and spread towards near flammable blocks, but fire will disappear if there is nothing to burn left. It will be extinguished by water and other blocks if it is next to it. A single basic flame block can be destroyed safely by punching it, but it is hurtful if you stand directly in it.") + permaflametext = S("The permanent flame is a damaging and destructive block. It will create basic flames next to it if flammable blocks are nearby. Other than the basic flame, the permanent flame will not go away by time alone. A permanent flame is extinguished by punching it, by nearby water or similar blocks, or by removing a coal block below it. Punching is is safe, but it hurts if you stand inside.") end @@ -249,8 +251,8 @@ local export_longdesc = { ["tnt:gunpowder"] = S("Gunpowder is used to craft TNT and to create gunpowder trails which can be ignited."), ["fire:basic_flame"] = basicflametext, + ["fire:permanent_flame"] = permaflametext, ["fire:flint_and_steel"] = S("Flint and steel is a tool to start fires."), - ["fire:permanent_flame"] = S("The permanent flame is a damaging and destructive block. It will create basic flames next to it if flammable blocks are nearby. Other than the basic flame, the permanent flame will not go away by time alone. A permanent flame is extinguished by punching it, by nearby water or similar blocks, or by removing a coal block below it. Punching is is safe, but it hurts if you stand inside."), ["doors:trapdoor"] = S("A trapdoor covers a hole in the floor and can be opened manually to access the area below it."), |