1
0

Merge pull request #466 from Sxw1212/master

Fix error on MagicCarpet Disable
This commit is contained in:
Alexander Harkness 2013-12-24 00:03:52 -08:00
commit dec59e783f
2 changed files with 6 additions and 2 deletions

View File

@ -17,5 +17,6 @@ Sofapriester
mborland
SamJBarney
worktycho
Sxw1212
Please add yourself to this list if you contribute to MCServer.

View File

@ -1,4 +1,5 @@
local Carpets = {}
local PLUGIN
function Initialize( Plugin )
Plugin:SetName( "MagicCarpet" )
@ -10,6 +11,8 @@ function Initialize( Plugin )
local PluginManager = cPluginManager:Get()
PluginManager:BindCommand("/mc", "magiccarpet", HandleCarpetCommand, " - Spawns a magical carpet");
PLUGIN = Plugin
LOG( "Initialised " .. Plugin:GetName() .. " v." .. Plugin:GetVersion() )
return true
end