summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorp-mcgowan <mickeymcgowan@shaw.ca>2014-12-03 07:35:34 +0100
committerp-mcgowan <mickeymcgowan@shaw.ca>2014-12-03 07:35:34 +0100
commitd3484334064d950654bdf12ec0a81e1b860f627c (patch)
tree08d290766028deddc7884bb9b254d0aaee351312
parentforgot generation defaul init (diff)
downloadcuberite-d3484334064d950654bdf12ec0a81e1b860f627c.tar
cuberite-d3484334064d950654bdf12ec0a81e1b860f627c.tar.gz
cuberite-d3484334064d950654bdf12ec0a81e1b860f627c.tar.bz2
cuberite-d3484334064d950654bdf12ec0a81e1b860f627c.tar.lz
cuberite-d3484334064d950654bdf12ec0a81e1b860f627c.tar.xz
cuberite-d3484334064d950654bdf12ec0a81e1b860f627c.tar.zst
cuberite-d3484334064d950654bdf12ec0a81e1b860f627c.zip
-rw-r--r--src/Generating/FinishGen.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Generating/FinishGen.h b/src/Generating/FinishGen.h
index c4d2a0799..15dd70e15 100644
--- a/src/Generating/FinishGen.h
+++ b/src/Generating/FinishGen.h
@@ -310,7 +310,7 @@ protected:
// cFinishGen override:
virtual void GenFinish(cChunkDesc & a_ChunkDesc) override;
- /// Tries to place a spring at the specified coords, checks neighbors. Returns true if successful
+ // Tries to place a spring at the specified coords, checks neighbors. Returns true if successful
bool TryPlaceSpring(cChunkDesc & a_ChunkDesc, int x, int y, int z);
} ;
@@ -333,10 +333,10 @@ protected:
// cFinishGen override:
virtual void GenFinish(cChunkDesc & a_ChunkDesc) override;
- // Tries to spawn a mob in the center of the pack. If successful, spawns 0-5 more.
+ /** Tries to spawn a mob in the center of the pack. If successful, spawns 0-5 more. */
bool TrySpawnAnimals(cChunkDesc & a_ChunkDesc, int x, int y, int z, eMonsterType AnimalToSpawn);
- // Gets a random mob from biome-dependant list
+ /** Gets a random mob from biome-dependant list */
eMonsterType GetRandomMob(cChunkDesc & a_ChunkDesc);
} ;