fix(rcf): wrong naming

This commit is contained in:
Swann
2019-02-13 11:55:18 +01:00
parent 8e003434b6
commit 5bc420fa3a
2 changed files with 6 additions and 6 deletions

View File

@ -32,8 +32,8 @@ class SessionPanel(bpy.types.Panel):
row = layout.row()
area_msg = row.box()
if len(net_operators.client.store) > 0:
for (id,msg) in net_operators.client.store:
if len(net_operators.client.message_store) > 0:
for (id,msg) in net_operators.client.message_store:
area_msg.label(text="{}:{}".format(id,msg))
else:
area_msg.label(text="Empty")