comparison CensusPlayerList.lua @ 6:10c85be19b56

rebase on CensusPlus-40000-4.3.2.zip; added worgen added 81 - 85
author EmFor
date Fri, 10 Dec 2010 15:47:23 +0100
parents edfa01041183
children 663f782bd903
comparison
equal deleted inserted replaced
5:39067cee234d 6:10c85be19b56
292 g_PlayerList[index] = { m_name = name, m_level = level, m_guild = guild, m_seen = lastseen }; 292 g_PlayerList[index] = { m_name = name, m_level = level, m_guild = guild, m_seen = lastseen };
293 g_PlayerLookupTable[name] = index; 293 g_PlayerLookupTable[name] = index;
294 end 294 end
295 end 295 end
296 296
297 function CensusPlus_List_OnMouseDown( self, arg1 )
298 if ( ( ( not self.isLocked ) or ( self.isLocked == 0 ) ) and ( arg1 == "LeftButton" ) ) then
299 self:StartMoving();
300 self.isMoving = true;
301 end
302 end
303