This commit is contained in:
Panquesito7 2019-07-18 20:43:38 -05:00 committed by GitHub
parent 3e8fcf3fc4
commit 9fcc62c1fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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