1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-18 20:12:07 +00:00

a bit higher sky, and Great Walls with more elements

This commit is contained in:
Zeno Rogue
2019-06-07 17:51:50 +02:00
parent 688ad336ae
commit 5fc24ac17a
3 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -347,9 +347,9 @@ namespace geom3 {
LAKE = lev_to_factor(-vid.lake_top);
HELLSPIKE = lev_to_factor(-(vid.lake_top+vid.lake_bottom)/2);
BOTTOM = lev_to_factor(-vid.lake_bottom);
LOWSKY = lev_to_factor((1 + vid.rock_wall_ratio) * wh);
LOWSKY = lev_to_factor(2 * wh);
HIGH = LOWSKY;
HIGH2 = lev_to_factor((2 + vid.rock_wall_ratio) * wh);
HIGH2 = lev_to_factor(3 * wh);
SKY = LOWSKY - 5;
}
}