diff options
author | madmaxoft <github@xoft.cz> | 2014-01-13 21:39:21 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-01-13 21:39:21 +0100 |
commit | f7c691caaa45fef8a7007eba920589be728e987b (patch) | |
tree | bd680a7f1d96c537218a0b6668ff93c83857938f /MCServer/Plugins | |
parent | Renamed unused source files from zlib. (diff) | |
download | cuberite-f7c691caaa45fef8a7007eba920589be728e987b.tar cuberite-f7c691caaa45fef8a7007eba920589be728e987b.tar.gz cuberite-f7c691caaa45fef8a7007eba920589be728e987b.tar.bz2 cuberite-f7c691caaa45fef8a7007eba920589be728e987b.tar.lz cuberite-f7c691caaa45fef8a7007eba920589be728e987b.tar.xz cuberite-f7c691caaa45fef8a7007eba920589be728e987b.tar.zst cuberite-f7c691caaa45fef8a7007eba920589be728e987b.zip |
Diffstat (limited to 'MCServer/Plugins')
-rw-r--r-- | MCServer/Plugins/APIDump/Hooks/OnPluginsLoaded.lua | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/MCServer/Plugins/APIDump/Hooks/OnPluginsLoaded.lua b/MCServer/Plugins/APIDump/Hooks/OnPluginsLoaded.lua index 0d5b7271e..2c8a5a2c9 100644 --- a/MCServer/Plugins/APIDump/Hooks/OnPluginsLoaded.lua +++ b/MCServer/Plugins/APIDump/Hooks/OnPluginsLoaded.lua @@ -37,12 +37,14 @@ local function SendMessageFailureFallback(a_Player, a_Message) end -- These three "variables" will hold the actual functions to call. --- By default they are initialized to the Fallback variants, but will be redirected to Core when all plugins load +-- By default they are initialized to the Fallback variants, +-- but will be redirected to Core when all plugins load SendMessage = SendMessageFallback; SendMessageSuccess = SendMessageSuccessFallback; SendMessageFailure = SendMessageFailureFallback; --- The callback tries to connect to the Core, if successful, overwrites the three functions with Core ones +-- The callback tries to connect to the Core +-- If successful, overwrites the three functions with Core ones local function OnPluginsLoaded() local CorePlugin = cPluginManager:Get():GetPlugin("Core"); if (CorePlugin == nil) then @@ -67,7 +69,10 @@ cPluginManager.AddHook(cPluginManager.HOOK_PLUGINS_LOADED, CoreMessagingPluginsL -- Usage, anywhere else in the plugin: -SendMessageFailure(a_Player, "Cannot teleport to player, the destination player " .. PlayerName .. " was not found"); +SendMessageFailure( + a_Player, + "Cannot teleport to player, the destination player " .. PlayerName .. " was not found" +); ]], }, } , -- CodeExamples |