fix escaping of `;` in teleport tube formspec

closes #93 #94
This commit is contained in:
OgelGames 2023-11-16 14:02:10 +11:00
parent ab0713d9a5
commit dc77d1056c
1 changed files with 4 additions and 2 deletions

View File

@ -148,9 +148,11 @@ local function get_receivers(pos, channel)
return receivers
end
local help_text = S("Channels are public by default").."\n"..
local help_text = minetest.formspec_escape(
S("Channels are public by default").."\n"..
S("Use <player>:<channel> for fully private channels").."\n"..
S("Use <player>\\;<channel> for private receivers")
S("Use <player>;<channel> for private receivers")
)
local size = has_digilines and "8,5.9" or "8,4.4"