diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-10 14:41:05 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-06-10 14:41:05 +0200 |
commit | e3713be4519b038be57e3a1d444254c6b00cba56 (patch) | |
tree | b589a7be581316d7cd7e3c6b489cacf7145fd565 /MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua | |
parent | ProtectionAreas: Implemented reloading areas when a player moves (diff) | |
download | cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.tar cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.tar.gz cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.tar.bz2 cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.tar.lz cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.tar.xz cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.tar.zst cuberite-e3713be4519b038be57e3a1d444254c6b00cba56.zip |
Diffstat (limited to 'MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua')
-rw-r--r-- | MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua b/MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua index 6e8881b72..8c2db1387 100644 --- a/MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua +++ b/MCServer/Plugins/ProtectionAreas/ProtectionAreas.lua @@ -25,6 +25,7 @@ function Initialize(a_Plugin) a_Plugin:SetName("ProtectionAreas");
a_Plugin:SetVersion(1);
+ InitializeConfig();
if (not(InitializeStorage())) then
LOGWARNING(PluginPrefix .. "failed to initialize Storage, plugin is disabled");
return false;
|