diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2014-06-02 11:54:45 +0200 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2014-06-02 11:54:45 +0200 |
commit | 4c757de9ff58ddab07fa2a337a1359b707480288 (patch) | |
tree | d926b4b236fefe64401eafbb37f8ba955ce8c0d3 | |
parent | Updated OnProjectileHitBlock documentation. (diff) | |
download | cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.tar cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.tar.gz cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.tar.bz2 cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.tar.lz cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.tar.xz cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.tar.zst cuberite-4c757de9ff58ddab07fa2a337a1359b707480288.zip |
-rw-r--r-- | MCServer/Plugins/Debuggers/Debuggers.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/MCServer/Plugins/Debuggers/Debuggers.lua b/MCServer/Plugins/Debuggers/Debuggers.lua index 064d5d772..534426d25 100644 --- a/MCServer/Plugins/Debuggers/Debuggers.lua +++ b/MCServer/Plugins/Debuggers/Debuggers.lua @@ -29,7 +29,8 @@ function Initialize(Plugin) PM:AddHook(cPluginManager.HOOK_WORLD_TICK, OnWorldTick); PM:AddHook(cPluginManager.HOOK_PLUGINS_LOADED, OnPluginsLoaded); PM:AddHook(cPluginManager.HOOK_PLUGIN_MESSAGE, OnPluginMessage); - PM:AddHook(cPluginManager.HOOK_PLAYER_JOINED, OnPlayerJoined) + PM:AddHook(cPluginManager.HOOK_PLAYER_JOINED, OnPlayerJoined); + PM:AddHook(cPluginManager.HOOK_PROJECTILE_HIT_BLOCK, OnProjectileHitBlock); -- _X: Disabled so that the normal operation doesn't interfere with anything -- PM:AddHook(cPluginManager.HOOK_CHUNK_GENERATED, OnChunkGenerated); @@ -1379,3 +1380,14 @@ end + +function OnProjectileHitBlock(a_Projectile, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_BlockHitPos) + local BlockX, BlockY, BlockZ = AddFaceDirection(a_BlockX, a_BlockY, a_BlockZ, a_BlockFace) + local World = a_Projectile:GetWorld() + + World:SetBlock(BlockX, BlockY, BlockZ, E_BLOCK_FIRE, 0) +end + + + + |