summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/top.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/top.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/top.lua')
-rw-r--r--MCServer/Plugins/Core/top.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/MCServer/Plugins/Core/top.lua b/MCServer/Plugins/Core/top.lua
deleted file mode 100644
index f85910475..000000000
--- a/MCServer/Plugins/Core/top.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-function HandleTopCommand( Split, Player )
-
- local World = Player:GetWorld()
-
- local PlayerPos = Player:GetPosition()
- local Height = World:GetHeight( math.floor( PlayerPos.x ), math.floor( PlayerPos.z ) )
- SetBackCoordinates( Player )
- Player:TeleportToCoords( PlayerPos.x, Height+1, PlayerPos.z )
- SendMessageSuccess( Player, "Teleported to the topmost block" )
-
- return true
-
-end