diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-11 21:25:55 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-11 21:25:55 +0200 |
commit | 373dac3204519b964710fdc693dd16c400881e1a (patch) | |
tree | 3faecd747d1da82cffff2ca45890968354dfeb43 /source/cPlugin_NewLua.h | |
parent | Fixed a bug in crafting recipes - would consume multiple items of asterisked ingredients (FS #205) (diff) | |
download | cuberite-373dac3204519b964710fdc693dd16c400881e1a.tar cuberite-373dac3204519b964710fdc693dd16c400881e1a.tar.gz cuberite-373dac3204519b964710fdc693dd16c400881e1a.tar.bz2 cuberite-373dac3204519b964710fdc693dd16c400881e1a.tar.lz cuberite-373dac3204519b964710fdc693dd16c400881e1a.tar.xz cuberite-373dac3204519b964710fdc693dd16c400881e1a.tar.zst cuberite-373dac3204519b964710fdc693dd16c400881e1a.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cPlugin_NewLua.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/cPlugin_NewLua.h b/source/cPlugin_NewLua.h index 8fb2e9dc0..096d5667f 100644 --- a/source/cPlugin_NewLua.h +++ b/source/cPlugin_NewLua.h @@ -38,6 +38,7 @@ public: //tolua_export virtual bool OnKilled( cPawn* a_Killed, cEntity* a_Killer ) override;
virtual void OnChunkGenerated(cWorld * a_World, int a_ChunkX, int a_ChunkZ) override;
+ virtual bool OnChunkGenerating( int a_ChunkX, int a_ChunkZ, cLuaChunk * a_pLuaChunk ) override;
lua_State* GetLuaState() { return m_LuaState; }
|