From d597ef63a483b790d1b6d8ba3d9a96869e6e65d5 Mon Sep 17 00:00:00 2001 From: Joel Leclerc Date: Wed, 18 Apr 2012 17:53:36 -0600 Subject: [PATCH] Made lava twice as frequent, and diminished the size of lava "bubbles" --- nether/init.lua | 4 ++-- nether/init.lua~ | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/nether/init.lua b/nether/init.lua index 4a60c43..b6ee79b 100644 --- a/nether/init.lua +++ b/nether/init.lua @@ -10,9 +10,9 @@ NETHER_HEIGHT = 30 -- Maximum amount of randomness in the map generation NETHER_RANDOM = 2 -- Frequency of lava (higher is less frequent) -LAVA_FREQ = 500 +LAVA_FREQ = 250 -- Maximum height of lava -LAVA_HEIGHT = 3 +LAVA_HEIGHT = 2 -- Frequency of nether trees (higher is less frequent) NETHER_TREE_FREQ = 350 -- Height of nether trees diff --git a/nether/init.lua~ b/nether/init.lua~ index db30492..6bfc3bd 100644 --- a/nether/init.lua~ +++ b/nether/init.lua~ @@ -10,9 +10,9 @@ NETHER_HEIGHT = 30 -- Maximum amount of randomness in the map generation NETHER_RANDOM = 2 -- Frequency of lava (higher is less frequent) -LAVA_FREQ = 500 +LAVA_FREQ = 300 -- Maximum height of lava -LAVA_HEIGHT = 3 +LAVA_HEIGHT = 2 -- Frequency of nether trees (higher is less frequent) NETHER_TREE_FREQ = 350 -- Height of nether trees @@ -726,7 +726,6 @@ function nether:teleport_player(from_nether, player) teleportpos = {x=portalpos.x + coin2, y=portalpos.y + 1, z=portalpos.z + coin} end player:setpos(teleportpos) - objmeta:set_string("teleporting", "") end -- Portal Creator