Fix crash when dying cuz fire, lava or magmablock
This commit is contained in:
parent
81ca79e85c
commit
661e10e992
8 changed files with 28 additions and 25 deletions
|
@ -1,8 +1,8 @@
|
|||
# textdomain: mcl_core
|
||||
%s could not survive in lava.=%s konnte nicht in Lava überleben.
|
||||
%s died in lava.=%s starb in Lava.
|
||||
%s melted in lava.=%s schmolz in der Lava.
|
||||
%s took a bath in a hot lava tub.=%s nahm ein Bad in einer heißen Lavawanne.
|
||||
@1 could not survive in lava.=@1 konnte nicht in Lava überleben.
|
||||
@1 died in lava.=@1 starb in Lava.
|
||||
@1 melted in lava.=@1 schmolz in der Lava.
|
||||
@1 took a bath in a hot lava tub.=@1 nahm ein Bad in einer heißen Lavawanne.
|
||||
A block of diamond is mostly a shiny decorative block but also useful as a compact storage of diamonds.=Ein Diamantblock ist hauptsächlich ein glänzender Dekorationsblock, aber er ist auch nützlich zur kompakten Aufbewahrung von Diamanten.
|
||||
A block of emerald is mostly a shiny decorative block but also useful as a compact storage of emeralds.=Ein Smaragdblock ist hauptsächlich ein glänzender Dekorationsblock, aber er ist auch nützlich zur kompakten Aufbewahrung von Smaragden.
|
||||
A block of gold is mostly a shiny decorative block but also useful as a compact storage of gold ingots.=Ein Goldblock ist hauptsächlich ein glänzender Dekorationsblock, aber er ist auch nützlich zur kompakten Aufbewahrung von Goldbarren.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# textdomain: mcl_core
|
||||
%s could not survive in lava.=
|
||||
%s died in lava.=
|
||||
%s melted in lava.=
|
||||
%s took a bath in a hot lava tub.=
|
||||
@1 could not survive in lava.=
|
||||
@1 died in lava.=
|
||||
@1 melted in lava.=
|
||||
@1 took a bath in a hot lava tub.=
|
||||
A block of diamond is mostly a shiny decorative block but also useful as a compact storage of diamonds.=
|
||||
A block of emerald is mostly a shiny decorative block but also useful as a compact storage of emeralds.=
|
||||
A block of gold is mostly a shiny decorative block but also useful as a compact storage of gold ingots.=
|
||||
|
|
|
@ -1,16 +1,17 @@
|
|||
-- Liquids: Water and lava
|
||||
|
||||
local S = minetest.get_translator("mcl_core")
|
||||
local N = function(s) return s end
|
||||
|
||||
local WATER_ALPHA = 179
|
||||
local WATER_VISC = 1
|
||||
local LAVA_VISC = 7
|
||||
|
||||
local lava_death_messages = {
|
||||
S("%s melted in lava."),
|
||||
S("%s took a bath in a hot lava tub."),
|
||||
S("%s died in lava."),
|
||||
S("%s could not survive in lava."),
|
||||
N("@1 melted in lava."),
|
||||
N("@1 took a bath in a hot lava tub."),
|
||||
N("@1 died in lava."),
|
||||
N("@1 could not survive in lava."),
|
||||
}
|
||||
|
||||
minetest.register_node("mcl_core:water_flowing", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue