From 25abfb9476cac32d8db59b73f8bdfc60ba85ff79 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Tue, 30 Jul 2013 22:26:50 +0100 Subject: Updated MagicCarpet to use new API [SEE DESC] Fixed non-teleportation upon falling through carpet due to use of deprecated function. Fixed spam of console upon falling through carpet. Added descriptive upon-enable message. --- MCServer/Plugins/MagicCarpet/plugin.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'MCServer/Plugins/MagicCarpet/plugin.lua') diff --git a/MCServer/Plugins/MagicCarpet/plugin.lua b/MCServer/Plugins/MagicCarpet/plugin.lua index b78c45f14..2fe5ba84f 100644 --- a/MCServer/Plugins/MagicCarpet/plugin.lua +++ b/MCServer/Plugins/MagicCarpet/plugin.lua @@ -37,6 +37,7 @@ function HandleCarpetCommand( Split, Player ) if( Carpet == nil ) then Carpets[ Player ] = cCarpet:new() Player:SendMessage("You're on a magic carpet!" ) + Player:SendMessage("Look straight down to descend. Jump to ascend!" ) else Carpet:remove() Carpets[ Player ] = nil @@ -72,8 +73,7 @@ function OnPlayerMoving(Player) Carpet:moveTo( cLocation:new( Player:GetPosX(), Player:GetPosY() - 1, Player:GetPosZ() ) ) else if( Player:GetPosY() < Carpet:getY() ) then - LOGINFO("Fell tru mc!") - Player:TeleportTo( Player:GetPosX(), Carpet:getY(), Player:GetPosZ() ) + Player:TeleportToCoords(Player:GetPosX(), Carpet:getY(), Player:GetPosZ()) end Carpet:moveTo( cLocation:new( Player:GetPosX(), Player:GetPosY(), Player:GetPosZ() ) ) end -- cgit v1.2.3