diff options
author | Wuzzy <wuzzy2@mail.ru> | 2021-07-12 18:32:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 20:32:27 +0200 |
commit | 6cdb150c8bd71ee0487d1af117c808b1b5ca8577 (patch) | |
tree | 053b87c880702cfc0aed356908b916fe97f19bb8 /builtin/client/death_formspec.lua | |
parent | b7b5aad02758ae897fc0239f50f93e04d085ceed (diff) | |
download | minetest-6cdb150c8bd71ee0487d1af117c808b1b5ca8577.tar.gz minetest-6cdb150c8bd71ee0487d1af117c808b1b5ca8577.tar.bz2 minetest-6cdb150c8bd71ee0487d1af117c808b1b5ca8577.zip |
Remove hardcoded "You died." message in chat (#11443)
Diffstat (limited to 'builtin/client/death_formspec.lua')
-rw-r--r-- | builtin/client/death_formspec.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/client/death_formspec.lua b/builtin/client/death_formspec.lua index 7df0cbd75..c25c799ab 100644 --- a/builtin/client/death_formspec.lua +++ b/builtin/client/death_formspec.lua @@ -2,7 +2,6 @@ -- handled by the engine. core.register_on_death(function() - core.display_chat_message(core.gettext("You died.")) local formspec = "size[11,5.5]bgcolor[#320000b4;true]" .. "label[4.85,1.35;" .. fgettext("You died") .. "]button_exit[4,3;3,0.5;btn_respawn;".. fgettext("Respawn") .."]" |