Update of /cvsroot/wpdev/xmlscripts/scripts/commands
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18863/commands
Modified Files:
who.py
Log Message:
fixes
Index: who.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/commands/who.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** who.py 4 Oct 2004 19:32:18 -0000 1.11
--- who.py 4 Oct 2004 20:05:49 -0000 1.12
***************
*** 73,80 ****
offset = 22
! for item in wholist[:10]:
! gump.addButton( 20, 40 + offset, 0xFA5, 0xFA7, 2 + player.serial )
! gump.addText( 54, 40 + offset, tr("%s [%s]") % ( player.name, player.account.name ), 0x834 )
! gump.addText( 257, 40 + offset, unicode(player.socket.address), 0x834 )
offset += 24
--- 73,80 ----
offset = 22
! for char in wholist[:10]:
! gump.addButton( 20, 40 + offset, 0xFA5, 0xFA7, 2 + char.serial )
! gump.addText( 54, 40 + offset, tr("%s [%s]") % ( char.name, char.account.name ), 0x834 )
! gump.addText( 257, 40 + offset, unicode(char.socket.address), 0x834 )
offset += 24
|