diff options
author | Mattes D <github@xoft.cz> | 2016-09-08 23:05:52 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-09-08 23:05:52 +0200 |
commit | d3cf47cc5d046d2ecf26b5101d05de64c7938fb7 (patch) | |
tree | 4a21a0f695d4613b177232d222f6b45614a8697f /Server/Plugins/APIDump/Classes/Plugins.lua | |
parent | remove hopper from dropper's recipe (#3374) (diff) | |
download | cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.tar cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.tar.gz cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.tar.bz2 cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.tar.lz cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.tar.xz cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.tar.zst cuberite-d3cf47cc5d046d2ecf26b5101d05de64c7938fb7.zip |
Diffstat (limited to '')
-rw-r--r-- | Server/Plugins/APIDump/Classes/Plugins.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Server/Plugins/APIDump/Classes/Plugins.lua b/Server/Plugins/APIDump/Classes/Plugins.lua index 99262b9cd..d813f8f0d 100644 --- a/Server/Plugins/APIDump/Classes/Plugins.lua +++ b/Server/Plugins/APIDump/Classes/Plugins.lua @@ -176,14 +176,14 @@ cPluginManager.AddHook(cPluginManager.HOOK_CHAT, OnChatMessage); HOOK_WEATHER_CHANGING = { Notes = "Called just before the weather changes" }, HOOK_WORLD_STARTED = { Notes = "Called when a world has been started." }, HOOK_WORLD_TICK = { Notes = "Called in each world's tick thread when the game logic is about to tick (20 times a second)." }, - + psDisabled = { Notes = "The plugin is not enabled in settings.ini" }, psError = { Notes = "The plugin is enabled in settings.ini, but it has run into an error while loading. Use {{cPlugin}}:GetLoadError() to identify the error." }, psLoaded = { Notes = "The plugin is enabled and loaded." }, psNotFound = { Notes = "The plugin has been loaded, but is no longer present on disk." }, psUnloaded = { Notes = "The plugin is enabled in settings.ini, but it has been unloaded (by a command)." }, }, -- constants - + ConstantGroups = { Hooks = |