summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Handy/handy.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-10-08 22:29:58 +0200
committerMattes D <github@xoft.cz>2014-10-08 22:29:58 +0200
commitb77d721daa1a9218fe0ee30fea83cea57f11f2ed (patch)
treebb7da1724320c934396a3064065f9892468d2803 /MCServer/Plugins/Handy/handy.lua
parentMerge pull request #1518 from mc-server/AcaciaTrees (diff)
parentReordered .gitmodules. Fixes #496 (diff)
downloadcuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.gz
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.bz2
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.lz
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.xz
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.zst
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.zip
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/Handy/handy.lua28
1 files changed, 0 insertions, 28 deletions
diff --git a/MCServer/Plugins/Handy/handy.lua b/MCServer/Plugins/Handy/handy.lua
deleted file mode 100644
index e4e9d3f5f..000000000
--- a/MCServer/Plugins/Handy/handy.lua
+++ /dev/null
@@ -1,28 +0,0 @@
--- Global variables
-PLUGIN = {} -- Reference to own plugin object
-CHEST_WIDTH = 9
-HANDY_VERSION = 2
---[[
-
-Handy is a plugin for other plugins. It contain no commands, no hooks, but functions to ease plugins developers' life.
-
-API:
-
-
-TODO:
-1. GetChestSlot wrapper, so it will detect double chest neighbour chest and will be able to access it.
-]]
-
-function Initialize(Plugin)
- PLUGIN = Plugin
- PLUGIN:SetName("Handy")
- PLUGIN:SetVersion(HANDY_VERSION)
-
- PluginManager = cRoot:Get():GetPluginManager()
- LOG("Initialized " .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion())
- return true
-end
-
-function OnDisable()
- LOG(PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. " is shutting down...")
-end \ No newline at end of file