summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/gotoworld.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/gotoworld.lua')
-rw-r--r--MCServer/Plugins/Core/gotoworld.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/MCServer/Plugins/Core/gotoworld.lua b/MCServer/Plugins/Core/gotoworld.lua
deleted file mode 100644
index d5113b667..000000000
--- a/MCServer/Plugins/Core/gotoworld.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-function HandleGotoWorldCommand( Split, Player )
- if( #Split ~= 2 ) then
- Player:SendMessage( cChatColor.Green .. "Usage: /gotoworld [WorldName]" )
- return true
- end
-
- if( Player:MoveToWorld(Split[2]) == false ) then
- Player:SendMessage( cChatColor.Green .. "Could not move to world '" .. Split[2] .. "'!" )
- return true
- end
-
-
- Player:SendMessage( cChatColor.Green .. "Moved successfully to '" .. Split[2] .. "'! :D" )
- return true
-end \ No newline at end of file