fix(rcf): fix drawing exceptions

This commit is contained in:
Swann Martinez
2019-04-17 11:49:27 +02:00
parent c3735cc2b7
commit 44b077fbce
2 changed files with 46 additions and 54 deletions

View File

@ -72,7 +72,7 @@ class RCFServerAgent():
logger.info("New user:{}".format(identity.decode()))
client_dict = {}
client_dict['location'] = [0,0,0,0]
client_dict['location'] = [[0,0,0],[0,0,0],[0,0,0],[0,0,0]]
client_dict['color'] = [0,1,1,1]
client_dict['active_object'] = ''
client_store = message.RCFMessage(key=client_key, id=identity,body=client_dict)