aboutsummaryrefslogtreecommitdiff
path: root/builtin/client/death_formspec.lua
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-03-26 14:00:57 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-03-26 14:00:57 +0100
commit880c9768a9323800ca8d44cc4b73e92278e58743 (patch)
treecf5b0b340e7a02bff8e13ae364901b324114228b /builtin/client/death_formspec.lua
parent83d09ffaf688aac9f2de67d06420572e4d0664dc (diff)
parent437d01196899f85bbc77d71123018aa26be337da (diff)
downloaddragonfireclient-880c9768a9323800ca8d44cc4b73e92278e58743.tar.xz
Merge branch 'master' of https://github.com/minetest/minetest
Diffstat (limited to 'builtin/client/death_formspec.lua')
-rw-r--r--builtin/client/death_formspec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/client/death_formspec.lua b/builtin/client/death_formspec.lua
index 7b8530440..6d6fd6fd9 100644
--- a/builtin/client/death_formspec.lua
+++ b/builtin/client/death_formspec.lua
@@ -11,12 +11,12 @@ core.register_on_death(function()
if core.settings:get_bool("autorespawn") then
core.send_respawn()
else
- core.show_formspec("__builtin__:death", death_formspec)
+ core.show_formspec("bultin:death", death_formspec)
end
end)
core.register_on_formspec_input(function(formname, fields)
- if formname == "__builtin__:death" then
+ if formname == "bultin:death" then
if fields.btn_ghost_mode then
core.display_chat_message("You are in ghost mode. Use .respawn to Respawn.")
else