summaryrefslogtreecommitdiffstats
path: root/src/Blocks/WorldInterface.h
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2014-06-05 18:58:29 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2014-06-05 18:58:29 +0200
commit156c9851b8a099656fa86ea52d989e35e5b7ebf1 (patch)
treef2d8b111aee03dba8f37a8c9bd04952ff1b7926c /src/Blocks/WorldInterface.h
parentFixed decision failure (diff)
downloadcuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.tar
cuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.tar.gz
cuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.tar.bz2
cuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.tar.lz
cuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.tar.xz
cuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.tar.zst
cuberite-156c9851b8a099656fa86ea52d989e35e5b7ebf1.zip
Diffstat (limited to 'src/Blocks/WorldInterface.h')
-rw-r--r--src/Blocks/WorldInterface.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h
index 08600d502..7df82197e 100644
--- a/src/Blocks/WorldInterface.h
+++ b/src/Blocks/WorldInterface.h
@@ -37,7 +37,9 @@ public:
virtual void SetTimeOfDay(Int64 a_TimeOfDay) = 0;
- /** Returns true if the current weather has any precipitation - rain or storm */
+ /** Returns true if the current weather has any precipitation - rain or storm
+ Does not check if biome has no downfall, use cChunk::GetBiomeAt(RelX, RelZ) for that
+ */
virtual bool IsWeatherWet(void) const = 0;
};