mirror of
https://github.com/minetest-mods/teleport-request.git
synced 2025-01-07 21:47:30 +01:00
Fix typo
This commit is contained in:
parent
3e8fcf3fc4
commit
9fcc62c1fc
4
init.lua
4
init.lua
@ -387,7 +387,7 @@ if enable_configuration then
|
|||||||
|
|
||||||
-- Show the available places to the player.
|
-- Show the available places to the player.
|
||||||
if param == "" then
|
if param == "" then
|
||||||
-- shivajiva101's function (thanks!).
|
-- shivajiva101's POI mod function (thanks!).
|
||||||
local places = {}
|
local places = {}
|
||||||
for key, value in pairs(available_places) do
|
for key, value in pairs(available_places) do
|
||||||
table.insert(places, key)
|
table.insert(places, key)
|
||||||
@ -397,7 +397,7 @@ if enable_configuration then
|
|||||||
end
|
end
|
||||||
table.insert(places, S("Usage: /tpp <place>"))
|
table.insert(places, S("Usage: /tpp <place>"))
|
||||||
return true, table.concat(places, "\n")
|
return true, table.concat(places, "\n")
|
||||||
-- End shivajiva101's function.
|
-- End shivajiva101's POI mod function.
|
||||||
|
|
||||||
-- Teleport player to the specified place.
|
-- Teleport player to the specified place.
|
||||||
elseif available_places[param] then
|
elseif available_places[param] then
|
||||||
|
Loading…
Reference in New Issue
Block a user