diff options
author | RealBadAngel <mk@realbadangel.pl> | 2013-03-17 07:13:10 +0100 |
---|---|---|
committer | RealBadAngel <mk@realbadangel.pl> | 2013-03-17 07:13:10 +0100 |
commit | 989b35f365d716f534fc0facc3e6280742c45bbc (patch) | |
tree | d7cfac107851376414f800586248a00a1592a074 /stargate | |
parent | 1d101ca1e5a8afdce9bfaa63bf478465f8a2eaac (diff) |
bugfix
Diffstat (limited to 'stargate')
-rw-r--r-- | stargate/stargate_gui.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stargate/stargate_gui.lua b/stargate/stargate_gui.lua index 14d5671..9046e53 100644 --- a/stargate/stargate_gui.lua +++ b/stargate/stargate_gui.lua @@ -364,7 +364,7 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) infotext=infotext.." Gate: "..current_gate["description"].."\n" infotext=infotext.."Owned by "..player_name.."\n" if current_gate["destination"] then - infotext=infotext.."Destination: ("..current_gate["pos"].x..","..current_gate["pos"].y..","..current_gate["pos"].z..") " + infotext=infotext.."Destination: ("..current_gate["destination"].x..","..current_gate["destination"].y..","..current_gate["destination"].z..") " infotext=infotext..current_gate["destination_description"] end meta:set_string("infotext",infotext) |