fix(rcf): fix client draw code

This commit is contained in:
Swann Martinez
2019-04-15 17:08:05 +02:00
parent c649f8fe8f
commit d23a4b271f
3 changed files with 40 additions and 26 deletions

View File

@ -72,8 +72,8 @@ class RCFServerAgent():
logger.info("New user:{}".format(identity.decode()))
client_dict = {}
client_dict['location'] = [0,0,0]
client_dict['color'] = [0,0,0]
client_dict['location'] = [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)
logger.info(client_store)