From 2a197705ac8785e01a48fa1ac5893d3bb876fd0a Mon Sep 17 00:00:00 2001 From: faketruth Date: Thu, 18 Oct 2012 21:54:56 +0000 Subject: Converted some const char*s and std::strings to AStrings Added a cPlayer:RemoveFromGroup() so players can be removed from groups programmatically Added a cClientHandle:SetUsername to be used by Lua. I'm curious what ThuGie can do with his plugin. git-svn-id: http://mc-server.googlecode.com/svn/trunk@978 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/GroupManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/GroupManager.cpp') diff --git a/source/GroupManager.cpp b/source/GroupManager.cpp index 982b67b45..98357ffa9 100644 --- a/source/GroupManager.cpp +++ b/source/GroupManager.cpp @@ -11,7 +11,7 @@ -typedef std::map< std::string, cGroup* > GroupMap; +typedef std::map< AString, cGroup* > GroupMap; struct cGroupManager::sGroupManagerState { GroupMap Groups; @@ -92,7 +92,7 @@ cGroupManager::cGroupManager() LOG("-- Done Loading Groups --"); } -cGroup* cGroupManager::GetGroup( const char* a_Name ) +cGroup* cGroupManager::GetGroup( const AString & a_Name ) { GroupMap::iterator itr = m_pState->Groups.find( a_Name ); if( itr != m_pState->Groups.end() ) -- cgit v1.2.3