Update client

This commit is contained in:
Loic Guegan 2019-05-12 10:53:22 +02:00
parent e087c17c05
commit 9de3c7586d

View file

@ -6,7 +6,7 @@ import pygame
RESP_BUFFER_LENGTH = 1024 RESP_BUFFER_LENGTH = 1024
ip_adress="192.168.1.14" ip_adress="192.168.1.14"
port=8090 port=8080
LARGEUR_BLOCK = 10 LARGEUR_BLOCK = 10
NB_BLOCKS = 30 NB_BLOCKS = 30
@ -97,12 +97,12 @@ def main():
if updateTmp != None and 'TYPE' in updateTmp: if updateTmp != None and 'TYPE' in updateTmp:
if updateTmp['TYPE'] != 'error': if updateTmp['TYPE'] != 'error':
up = updateTmp up = updateTmp
time.sleep(0.2) # time.sleep(0.2)
up = update(gameId)
pygame.display.flip() pygame.display.flip()
up = update(gameId)
pygame.quit() pygame.quit()
if __name__ == '__main__': if __name__ == '__main__':
main() main()