From d441096d6229584cce4c76302537c59d89017612 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 31 Mar 2013 17:10:17 +0000 Subject: MineShafts: User-settable chance of individual pieces' occurence. Staircase-only mineshafts, yay :) git-svn-id: http://mc-server.googlecode.com/svn/trunk@1336 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Generating/MineShafts.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/Generating/MineShafts.h') 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 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); -- cgit v1.2.3