From 114e0d86a21e5153d1573592ff0a7bbc17a98749 Mon Sep 17 00:00:00 2001 From: veikk0 Date: Sat, 12 Mar 2016 02:29:42 +0200 Subject: [PATCH 1/3] More death messages --- init.lua | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/init.lua b/init.lua index 3601c1e..e3cdef6 100644 --- a/init.lua +++ b/init.lua @@ -36,6 +36,9 @@ messages.lava = { " couldn't resist that warm glow of lava.", " dug straight down.", " didn't know lava was hot." + " dived into a pool of lava and hit their head." + "'s goose was cooked." + } -- Drowning death messages @@ -46,6 +49,12 @@ messages.water = { " tried to impersonate an anchor.", " forgot he wasn't a fish.", " blew one too many bubbles." + " is sleeping with the fishes." + " regrets skipping the swimming lessons." + " tried to swim in cement shoes." + " took \"our ancestors were fish\" the wrong way." + " forgot to wear a life jacket." + " went to Davy Jones's locker." } -- Burning death messages @@ -55,6 +64,14 @@ messages.fire = { " got too close to the camp fire.", " just got roasted, hotdog style.", " gout burned up. More light that way." + " spontaneously combusted." + "'s goose was cooked." + " found out they were highly flammable." + " may need some ice for that burn." + " tried to make love to a campfire." + " walked on hot coals." + " was fired." + "'s fire eating performance took a turn for the worse." } -- Other death messages @@ -64,6 +81,16 @@ messages.other = { " gave up on life.", " is somewhat dead now.", " passed out -permanently." + " got to test the theory of the eternal soul." + " wanted to see if reincarnation was true." + " is now a candidate for the Darwin Awards." + " removed themselves from the gene pool." + " bit the dust." + " came to a sticky end." + " is now dead as a dodo." + " kicked the bucket." + " was too good for this world." + " cashed in their chips." } function get_message(mtype) From c98eec4f5d5bb1dd46f6ece633c8c019e39fa962 Mon Sep 17 00:00:00 2001 From: veikk0 Date: Sat, 12 Mar 2016 22:40:01 +0200 Subject: [PATCH 2/3] Removed newline --- init.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/init.lua b/init.lua index e3cdef6..868d785 100644 --- a/init.lua +++ b/init.lua @@ -38,7 +38,6 @@ messages.lava = { " didn't know lava was hot." " dived into a pool of lava and hit their head." "'s goose was cooked." - } -- Drowning death messages From 1290e15b8e17e2b035169cfbd41f387b1c7c20da Mon Sep 17 00:00:00 2001 From: veikk0 Date: Mon, 28 Mar 2016 16:00:59 +0300 Subject: [PATCH 3/3] Changed singleplayer name --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 868d785..bf116eb 100644 --- a/init.lua +++ b/init.lua @@ -104,7 +104,7 @@ minetest.register_on_dieplayer(function(player) local player_name = player:get_player_name() local node = minetest.registered_nodes[minetest.get_node(player:getpos()).name] if minetest.is_singleplayer() then - player_name = "You" + player_name = "The player" end -- Death by lava if node.groups.lava ~= nil then