private void OnServerInitialized()
 {
     instance = this;
     permission.RegisterPermission(MASTER_PERM, this);
     holders = new MasterKeyHolders();
     if (Clans == null)
     {
         Puts(RUST_CLANS_NOT_FOUND);
     }
     else
     {
         Puts(RUST_CLANS_HOOK);
     }
 }
Example #2
0
 void OnServerInitialized()
 {
     permission.RegisterPermission(MASTER_PERM, this);
     ClansInstance = Clans;
     holders       = new MasterKeyHolders();
 }