diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 69fc601c3..815a5dd85 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -103,7 +103,9 @@ struct TextDestNodeMetadata : public TextDest std::string ntext = wide_to_narrow(text); infostream<<"Changing text of a sign node: " <<ntext<<std::endl; - m_client->sendSignNodeText(m_p, ntext); + std::map<std::string, std::string> fields; + fields["text"] = ntext; + m_client->sendNodemetaFields(m_p, "", fields); } v3s16 m_p; |