diff options
author | Alexander Harkness <bearbin@gmail.com> | 2014-06-11 14:34:49 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2014-06-11 14:34:49 +0200 |
commit | c335b8d77346541799b9c62e4fc78ef217cc4f63 (patch) | |
tree | 0154bcddb1631bde7e558d854fbe2bc22eb4a181 | |
parent | Update APIDesc.lua (diff) | |
download | cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.tar cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.tar.gz cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.tar.bz2 cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.tar.lz cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.tar.xz cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.tar.zst cuberite-c335b8d77346541799b9c62e4fc78ef217cc4f63.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 1f43a6172..8442f6d80 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -2299,6 +2299,7 @@ end IsWeatherStorm = { Params = "", Return = "bool", Notes = "Returns true if the current world is stormy." }, IsWeatherStormAt = { Params = "BlockX, BlockZ", Return = "bool", Notes = "Returns true if the specified location is stormy (takes into account biomes)." }, IsWeatherSunny = { Params = "", Return = "bool", Notes = "Returns true if the current weather is sunny." }, + IsWeatherSunnyAt = { Params = "BlockX, BlockZ", Return = "bool", Notes = "Returns true if the current weather is sunny at the specified location (takes into account biomes)." }, IsWeatherWet = { Params = "", Return = "bool", Notes = "Returns true if the current world has any precipitation (rain or storm)." }, IsWeatherWetAt = { Params = "BlockX, BlockZ", Return = "bool", Notes = "Returns true if the specified location has any precipitation (rain or storm) (takes into account biomes)." }, QueueBlockForTick = { Params = "BlockX, BlockY, BlockZ, TicksToWait", Return = "", Notes = "Queues the specified block to be ticked after the specified number of gameticks." }, |