You know, taking a closer look at your client code, specifically in your 
check_crash() Function:

def check_crash():
*--->    **return*
        send = "{\'"+str(username)+"\':"+str(bullets)+"}"
        server.sendall(send)
        print send
        # Query Server for Colidables list
        collidables = server.recv(1000000)
        print collidables

Return will immediately end a function and return a result to whatever 
called it (IE: return x), which means anything after it will be completely 
ignored.
Typically you want to put that at the end of a function or at any point you 
want to return a result and stop processing, so that might be your problem 
there
since that seems to handle your network functions.


-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to pyglet-users+unsubscr...@googlegroups.com.
To post to this group, send email to pyglet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/pyglet-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to