diff --git a/User.cpp b/User.cpp index 10149198..279c18f0 100644 --- a/User.cpp +++ b/User.cpp @@ -387,6 +387,7 @@ const string& CUser::GetCurPath() const { return m_pZNC->GetCurPath(); } const string& CUser::GetDLPath() const { return m_pZNC->GetDLPath(); } const string& CUser::GetModPath() const { return m_pZNC->GetModPath(); } const string& CUser::GetHomePath() const { return m_pZNC->GetHomePath(); } +string CUser::GetPemLocation() const { return m_pZNC->GetPemLocation(); } bool CUser::UseClientIP() const { return m_bUseClientIP; } bool CUser::KeepNick() const { return m_bKeepNick; } diff --git a/User.h b/User.h index b9c099da..bb39c0ef 100644 --- a/User.h +++ b/User.h @@ -85,6 +85,7 @@ public: const string& GetDLPath() const; const string& GetModPath() const; const string& GetHomePath() const; + string GetPemLocation() const; bool UseClientIP() const; bool KeepNick() const;