aboutsummaryrefslogtreecommitdiffstats
path: root/xml/!town.xml
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-10-22 16:45:57 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-10-22 16:45:57 -0400
commitf785f17cdb286449e8d98be747213740172629c5 (patch)
tree836d9601046f20737d2c27c35c673318adfc2f88 /xml/!town.xml
parentb64aa31b4dc0c5e050c4978bae7bd43a040a368b (diff)
removed random gen, indoor changes
Diffstat (limited to 'xml/!town.xml')
-rw-r--r--xml/!town.xml12
1 files changed, 2 insertions, 10 deletions
diff --git a/xml/!town.xml b/xml/!town.xml
index 26a62a1..b2d96a5 100644
--- a/xml/!town.xml
+++ b/xml/!town.xml
@@ -16,18 +16,10 @@
x = 0
ground = function()
- if (x == 330) then
+ if (x == 320) then
height = -1
else
- if (x &lt; 10) then
- height = 800
- else
- if (x &lt; 30) then
- height = -100 * math.tan(0.08 * (x - 10) + 1.77) + 75
- else
- height = 60
- end
- end
+ height = 1 / math.pow(2, (x - 50) / 2) + 60
end
x = x + 1
end