diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-13 20:22:08 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-13 20:22:08 +0100 |
commit | 8b1a8bee3437f5d8f865e77e27ae15ad4c690f10 (patch) | |
tree | 4dfd2af1af81457636feae7f25dedde794ed6be9 /source/Plugin.cpp | |
parent | Added a forgotten part of the cBlockArea::FillRelCuboid() function. (diff) | |
download | cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.tar cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.tar.gz cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.tar.bz2 cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.tar.lz cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.tar.xz cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.tar.zst cuberite-8b1a8bee3437f5d8f865e77e27ae15ad4c690f10.zip |
Diffstat (limited to 'source/Plugin.cpp')
-rw-r--r-- | source/Plugin.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/source/Plugin.cpp b/source/Plugin.cpp index 736460e87..968f8c1f6 100644 --- a/source/Plugin.cpp +++ b/source/Plugin.cpp @@ -4,6 +4,7 @@ #include "Plugin.h" #include "Pawn.h" #include "Player.h" +#include "World.h" @@ -502,7 +503,7 @@ bool cPlugin::OnUpdatingSign(cWorld * a_World, int a_BlockX, int a_BlockY, int a -bool cPlugin::OnWeatherChanged(cWorld * a_World) +bool cPlugin::OnWeatherChanged(cWorld & a_World) { UNUSED(a_World); return false; @@ -512,6 +513,17 @@ bool cPlugin::OnWeatherChanged(cWorld * a_World) +bool cPlugin::OnWeatherChanging(cWorld & a_World, eWeather & a_Weather) +{ + UNUSED(a_World); + UNUSED(a_Weather); + return false; +} + + + + + bool cPlugin::HandleCommand(const AStringVector & a_Split, cPlayer * a_Player) { UNUSED(a_Split); |