remove a line I added for debugging purposes

This commit is contained in:
FaceDeer 2018-11-16 00:22:02 -07:00
parent f5e519bda8
commit 7f621e4b92
2 changed files with 2 additions and 5 deletions

@ -10,12 +10,12 @@ Also included are ABMs that cause soil adjacent to lava to be cooked into barren
## Magma veins ## Magma veins
Magma veins are lava-filled conduits that thread through the ground somewhat like a cave system. The veins have a bias toward vertical orientation but can curve and twist in any direction. Magma veins are magma-filled conduits that thread through the ground somewhat like a cave system. The veins have a bias toward vertical orientation but can curve and twist in any direction.
Magma veins can be optionally be lined with a layer of obsidian. The density of vein generation is configurable. Magma veins can be optionally be lined with a layer of obsidian. The density of vein generation is configurable.
## Volcanoes ## Volcanoes
Volcanoes are large cone-shaped mountains formed from lava that rises through a central pipe. This mod can scatter randomly sized and shaped volcanoes across the map, with configurable spacing and probability. Volcanoes come in "extinct", "dormant" and "active" forms, and tall volcanoes can have a mantle of snow clinging to their peaks. Volcanoes are large cone-shaped mountains formed from magma that rises through a central vertical pipe. This mod can scatter randomly sized and shaped volcanoes across the map, with configurable spacing and probability. Volcanoes come in "extinct", "dormant" and "active" forms, and tall volcanoes can have a mantle of snow clinging to their peaks.
If a player has the "findvolcano" priviledge he can use the "findvolcano" console command to locate nearby volcanoes. If a player has the "findvolcano" priviledge he can use the "findvolcano" console command to locate nearby volcanoes.

@ -408,9 +408,6 @@ local send_volcano_state = function(pos, name)
text = text .. "Active" text = text .. "Active"
end end
local base_radius = (volcano.depth_peak - depth_maxwidth) * volcano.slope + radius_lining
text = text .. "\nBase radius: " .. tostring(base_radius)
minetest.chat_send_player(name, text) minetest.chat_send_player(name, text)
end end