summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/item.lua
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@hotmail.co.uk>2013-08-16 12:25:53 +0200
committerTiger Wang <ziwei.tiger@hotmail.co.uk>2013-08-16 12:25:53 +0200
commitcbde4f546a3135d9889b37aa227468106958a94a (patch)
tree0444a5f3d1797a01fb6a4c01def9933084652e8c /MCServer/Plugins/Core/item.lua
parentFeature and bugfixes [SEE DESC] (diff)
parentReplaced E_ENTITY_TYPE_XXX with cMonster::mtXXX. (diff)
downloadcuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar
cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.gz
cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.bz2
cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.lz
cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.xz
cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.zst
cuberite-cbde4f546a3135d9889b37aa227468106958a94a.zip
Diffstat (limited to 'MCServer/Plugins/Core/item.lua')
-rw-r--r--MCServer/Plugins/Core/item.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/MCServer/Plugins/Core/item.lua b/MCServer/Plugins/Core/item.lua
deleted file mode 100644
index 069291122..000000000
--- a/MCServer/Plugins/Core/item.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-function HandleItemCommand( Split, Player )
-
- if ((#Split ~= 2) and (#Split ~=3)) then
- SendMessage( Player, "Usage: /i <item>[:meta] [amount]" )
- return true
- end
-
- local itemSplit = StringSplit(Split[2], ":")
- local newSplit = {}
-
- newSplit[1] = "/give"
- newSplit[2] = Player:GetName()
- newSplit[3] = itemSplit[1]
- if Split[3] ~= nil then
- newSplit[4] = Split[3]
- else
- newSplit[4] = 1
- end
- if itemSplit[2] ~= nil then
- newSplit[5] = itemSplit[2]
- end
-
- HandleGiveCommand( newSplit, Player )
- return true
-
-end