f746d17424
git-svn-id: http://mc-server.googlecode.com/svn/trunk@1557 0a769ca7-a7f5-676a-18bf-c427514a06d6
22 lines
413 B
Lua
22 lines
413 B
Lua
|
|
-- ProtectionAreas.lua
|
|
-- Defines the main plugin entrypoint
|
|
|
|
|
|
|
|
|
|
|
|
function Initialize(a_Plugin)
|
|
a_Plugin:SetName("ProtectionAreas");
|
|
a_Plugin:SetVersion(1);
|
|
|
|
InitializeStorage();
|
|
InitializeHooks(a_Plugin);
|
|
InitializeCommandHandlers();
|
|
|
|
-- TODO: We might be reloading, so there may be players already present in the server
|
|
-- Reload areas for all present players
|
|
|
|
return true;
|
|
end
|