summaryrefslogtreecommitdiffstats
path: root/source/Generating/MineShafts.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-31 19:10:17 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-31 19:10:17 +0200
commitd441096d6229584cce4c76302537c59d89017612 (patch)
tree7bf3b3fde162610b623e1a41e76e3724370a0f1a /source/Generating/MineShafts.h
parentMineShafts: Staircases have further connections behind them. (diff)
downloadcuberite-d441096d6229584cce4c76302537c59d89017612.tar
cuberite-d441096d6229584cce4c76302537c59d89017612.tar.gz
cuberite-d441096d6229584cce4c76302537c59d89017612.tar.bz2
cuberite-d441096d6229584cce4c76302537c59d89017612.tar.lz
cuberite-d441096d6229584cce4c76302537c59d89017612.tar.xz
cuberite-d441096d6229584cce4c76302537c59d89017612.tar.zst
cuberite-d441096d6229584cce4c76302537c59d89017612.zip
Diffstat (limited to '')
-rw-r--r--source/Generating/MineShafts.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/Generating/MineShafts.h b/source/Generating/MineShafts.h
index a266231d3..a2191b665 100644
--- a/source/Generating/MineShafts.h
+++ b/source/Generating/MineShafts.h
@@ -37,12 +37,12 @@ protected:
typedef std::list<cMineShaftSystem *> cMineShaftSystems;
cNoise m_Noise;
- int m_GridSize; ///< Average spacing of the systems
- int m_MaxSystemSize; ///< Maximum blcok size of a mineshaft system
- int m_ChanceCorridor; ///< Chance (out of 1000) of a branch object being the corridor
- int m_ChanceCrossing; ///< Chance (out of 1000) of a branch object being the crossing
- int m_ChanceStaircase; ///< Chance (out of 1000) of a branch object being the staircase
- cMineShaftSystems m_Cache; ///< Cache of the most recently used systems. MoveToFront used.
+ int m_GridSize; ///< Average spacing of the systems
+ int m_MaxSystemSize; ///< Maximum blcok size of a mineshaft system
+ int m_ProbLevelCorridor; ///< Probability level of a branch object being the corridor
+ int m_ProbLevelCrossing; ///< Probability level of a branch object being the crossing, minus Corridor
+ int m_ProbLevelStaircase; ///< Probability level of a branch object being the staircase, minus Crossing
+ cMineShaftSystems m_Cache; ///< Cache of the most recently used systems. MoveToFront used.
/// Clears everything from the cache
void ClearCache(void);